2022-06-06 15:37:32 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2022-10-19 14:21:47 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-06-06 15:37:32 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>common-authorization</artifactId>
|
2024-10-01 11:06:10 +02:00
|
|
|
<version>3.0.0</version>
|
2022-06-06 15:37:32 +02:00
|
|
|
<name>authorization service common library</name>
|
2022-10-19 14:21:47 +02:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2023-08-03 15:34:51 +02:00
|
|
|
<version>1.2.0</version>
|
2022-10-19 14:21:47 +02:00
|
|
|
</parent>
|
|
|
|
<scm>
|
2024-03-12 10:35:57 +01:00
|
|
|
<connection>
|
|
|
|
scm:git:https://code-repo.d4science.org/gCubeSystem/common-authorization.git</connection>
|
|
|
|
<developerConnection>
|
|
|
|
scm:git:https://code-repo.d4science.org/gCubeSystem/common-authorization.git</developerConnection>
|
2022-10-19 14:21:47 +02:00
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/common-authorization</url>
|
|
|
|
</scm>
|
2024-03-12 10:35:57 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
</properties>
|
2022-10-19 14:21:47 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2024-10-01 11:06:10 +02:00
|
|
|
<version>4.0.0</version>
|
2022-10-19 14:21:47 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
2024-02-02 12:24:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
</dependency>
|
2022-10-19 14:21:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-03-12 10:35:57 +01:00
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
2023-03-31 14:45:23 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-15 16:54:53 +02:00
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
2022-10-19 14:21:47 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2024-02-02 12:24:23 +01:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2022-10-19 14:21:47 +02:00
|
|
|
</project>
|