2020-05-21 15:47:28 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-04 18:31:12 +02:00
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2024-04-24 10:59:46 +02:00
|
|
|
<version>1.2.0</version>
|
2020-05-21 15:47:28 +02:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
2020-09-04 18:31:12 +02:00
|
|
|
|
2020-06-18 10:57:37 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>oidc-library</artifactId>
|
2024-09-30 12:06:19 +02:00
|
|
|
<version>1.3.3</version>
|
2021-01-11 16:04:18 +01:00
|
|
|
|
2020-06-18 10:57:37 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2024-05-08 13:56:23 +02:00
|
|
|
<artifactId>gcube-bom</artifactId>
|
2024-11-05 11:43:54 +01:00
|
|
|
<version>2.4.1</version>
|
2020-06-18 10:57:37 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-01-11 16:04:18 +01:00
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
|
|
|
</scm>
|
|
|
|
|
2024-05-08 13:56:23 +02:00
|
|
|
<properties>
|
|
|
|
<java.version>8</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<slf4j-log4j12.version>1.6.4</slf4j-log4j12.version>
|
|
|
|
<log4j.version>1.2.16</log4j.version>
|
|
|
|
</properties>
|
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
<dependencies>
|
2021-05-06 17:08:19 +02:00
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2021-05-06 17:08:19 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2024-05-08 13:56:23 +02:00
|
|
|
<version>${slf4j-log4j12.version}</version>
|
2021-05-06 17:08:19 +02:00
|
|
|
<scope>test</scope>
|
2020-05-21 15:47:28 +02:00
|
|
|
</dependency>
|
2021-05-06 17:08:19 +02:00
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
2024-05-08 13:56:23 +02:00
|
|
|
<version>${log4j.version}</version>
|
2021-05-06 17:08:19 +02:00
|
|
|
<scope>test</scope>
|
2020-05-21 15:47:28 +02:00
|
|
|
</dependency>
|
2021-05-06 17:08:19 +02:00
|
|
|
|
2020-09-04 18:31:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-05-06 17:08:19 +02:00
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
</dependencies>
|
2021-01-11 16:04:18 +01:00
|
|
|
|
2020-06-22 10:48:12 +02:00
|
|
|
<build />
|
2021-01-11 16:04:18 +01:00
|
|
|
|
2020-05-21 15:47:28 +02:00
|
|
|
</project>
|