2020-11-16 23:35:08 +01: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>
|
|
|
|
|
|
|
|
<parent>
|
2021-12-24 17:33:41 +01:00
|
|
|
<groupId>org.gcube.iam</groupId>
|
2020-11-16 23:35:08 +01:00
|
|
|
<artifactId>keycloak-d4science-spi-parent</artifactId>
|
2023-10-09 17:10:28 +02:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2020-11-16 23:35:08 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>delete-account</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-12-22 11:34:18 +01:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.parent.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.parent.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.parent.artifactId}</url>
|
|
|
|
</scm>
|
2020-11-24 17:32:17 +01:00
|
|
|
|
2020-11-16 23:35:08 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>event-publisher-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-12-27 13:08:14 +01:00
|
|
|
<groupId>org.gcube.iam</groupId>
|
2020-11-16 23:35:08 +01:00
|
|
|
<artifactId>event-listener-provider</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2021-12-27 13:08:14 +01:00
|
|
|
<scope>compile</scope>
|
2020-11-16 23:35:08 +01:00
|
|
|
</dependency>
|
2020-12-16 16:24:43 +01:00
|
|
|
<dependency>
|
2021-12-27 13:08:14 +01:00
|
|
|
<groupId>org.gcube.iam</groupId>
|
2020-12-16 16:24:43 +01:00
|
|
|
<artifactId>avatar-storage</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2021-12-27 13:08:14 +01:00
|
|
|
<scope>compile</scope>
|
2020-12-16 16:24:43 +01:00
|
|
|
</dependency>
|
2021-05-21 08:22:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
2022-09-26 16:45:30 +02:00
|
|
|
<version>${json-simple.version}</version>
|
2021-05-21 08:22:52 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-11-16 23:35:08 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|