gcube-secrets/pom.xml

71 lines
2.0 KiB
XML
Raw Normal View History

2022-06-06 12:34:19 +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>
<groupId>org.gcube.common.security</groupId>
<artifactId>gcube-secrets</artifactId>
2023-08-03 15:29:45 +02:00
<version>1.0.0</version>
2022-06-06 12:34:19 +02:00
<name>gcube secrets</name>
2022-07-27 09:29:09 +02:00
<scm>
2024-04-02 09:05:42 +02:00
<connection>
scm:git:https://code-repo.d4science.org/gCubeSystem/gcube-secrets</connection>
<developerConnection>
scm:git:https://code-repo.d4science.org/gCubeSystem/gcube-secrets</developerConnection>
2022-07-27 09:29:09 +02:00
<url>https://code-repo.d4science.org/gCubeSystem/gcube-secrets</url>
</scm>
2023-01-19 10:56:43 +01:00
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
2022-06-06 12:34:19 +02:00
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
2023-08-03 15:29:45 +02:00
<version>1.2.0</version>
2022-06-06 12:34:19 +02:00
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
2024-04-02 09:05:42 +02:00
<version>3.0.1-SNAPSHOT</version>
2022-06-06 12:34:19 +02:00
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>keycloak-client</artifactId>
</dependency>
2024-04-30 16:55:51 +02:00
<!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.4.0</version>
</dependency>
2022-06-06 12:34:19 +02:00
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>common-security</artifactId>
</dependency>
2022-06-15 17:56:39 +02:00
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>authorization-client</artifactId>
</dependency>
2022-07-26 16:48:20 +02:00
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>gcube-jackson-annotations</artifactId>
</dependency>
2022-06-06 12:34:19 +02:00
</dependencies>
</project>