2020-07-16 13:42:55 +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>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube</groupId>
|
|
|
|
<artifactId>keycloak-d4science-spi</artifactId>
|
2020-07-31 18:27:30 +02:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2020-07-16 13:42:55 +02:00
|
|
|
|
2020-07-31 18:27:30 +02:00
|
|
|
<modules>
|
2020-08-04 12:06:40 +02:00
|
|
|
<!-- <module>avatar-realm-resource</module> -->
|
2020-07-31 18:27:30 +02:00
|
|
|
<module>event-listener-provider</module>
|
|
|
|
<module>identity-provider-mapper</module>
|
|
|
|
<module>keycloak-d4science-spi-ear</module>
|
|
|
|
<module>ldap-storage-mapper</module>
|
|
|
|
</modules>
|
2020-07-16 13:42:55 +02:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2020-07-31 18:27:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<version>10.0.2</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2020-07-16 13:42:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>event-publisher-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2020-07-31 18:27:30 +02:00
|
|
|
<scope>compile</scope>
|
2020-07-16 15:36:42 +02:00
|
|
|
</dependency>
|
2020-07-16 13:42:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
2020-07-31 18:27:30 +02:00
|
|
|
<scope>compile</scope>
|
2020-07-16 13:42:55 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-spi</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-spi-private</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-services</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-ldap-federation</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.wildfly.plugins</groupId>
|
|
|
|
<artifactId>wildfly-maven-plugin</artifactId>
|
2020-07-31 18:27:30 +02:00
|
|
|
<!-- <version>${wildfly.plugin.version}</version> -->
|
|
|
|
<version>2.0.0.Final</version>
|
2020-07-16 13:42:55 +02:00
|
|
|
<configuration>
|
2020-07-31 18:27:30 +02:00
|
|
|
<skip>true</skip>
|
2020-07-16 13:42:55 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|