136 lines
3.7 KiB
XML
136 lines
3.7 KiB
XML
|
<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>
|
||
|
<relativePath />
|
||
|
</parent>
|
||
|
|
||
|
<groupId>org.gcube</groupId>
|
||
|
<artifactId>keycloak-d4science-spi</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<keycloak-version>10.0.2</keycloak-version>
|
||
|
<jboss.logging.version>3.4.1.Final</jboss.logging.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<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>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.jboss.slf4j</groupId> -->
|
||
|
<!-- <artifactId>slf4j-jboss-logging</artifactId> -->
|
||
|
<!-- <version>1.2.0.Final</version> -->
|
||
|
<!-- <scope>runtime</scope> -->
|
||
|
<!-- </dependency> -->
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-core</artifactId>
|
||
|
<version>${keycloak-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-server-spi</artifactId>
|
||
|
<version>${keycloak-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-server-spi-private</artifactId>
|
||
|
<version>${keycloak-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-services</artifactId>
|
||
|
<version>${keycloak-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-ldap-federation</artifactId>
|
||
|
<version>${keycloak-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.logging</groupId>
|
||
|
<artifactId>jboss-logging</artifactId>
|
||
|
<version>${jboss.logging.version}</version>
|
||
|
<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>
|
||
|
<configuration>
|
||
|
<skip>false</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
|
||
|
<configuration>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make-assembly</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|