2020-07-31 18:27:30 +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>
|
|
|
|
|
|
|
|
<parent>
|
2021-12-24 17:33:41 +01:00
|
|
|
<groupId>org.gcube.iam</groupId>
|
2020-08-13 16:27:32 +02:00
|
|
|
<artifactId>keycloak-d4science-spi-parent</artifactId>
|
2022-11-02 13:30:13 +01:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2020-07-31 18:27:30 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>event-listener-provider</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-08-13 16:27:32 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>event-publisher-library</artifactId>
|
2021-12-27 13:08:54 +01:00
|
|
|
<version>[1.1.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>provided</scope>
|
2020-08-13 16:27:32 +02: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-08-13 16:27:32 +02:00
|
|
|
</dependencies>
|
2020-07-31 18:27:30 +02:00
|
|
|
|
|
|
|
<build />
|
|
|
|
|
|
|
|
</project>
|