2019-10-08 09:20:37 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-quarkus-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2020-02-17 13:55:27 +00:00
|
|
|
<version>9.0.1-SNAPSHOT</version>
|
2019-10-08 09:20:37 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2019-10-14 17:58:56 +00:00
|
|
|
<name>Keycloak Quarkus Extensions</name>
|
2019-10-08 09:20:37 +00:00
|
|
|
<artifactId>keycloak-quarkus-extensions</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-10-11 10:47:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-core</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-12-09 13:52:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2020-02-07 16:24:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-model-jpa</artifactId>
|
|
|
|
</dependency>
|
2019-11-28 22:06:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2019-12-09 15:01:52 +00:00
|
|
|
<artifactId>keycloak-services</artifactId>
|
2019-11-28 22:06:13 +00:00
|
|
|
</dependency>
|
2019-10-11 10:47:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2019-12-09 15:01:52 +00:00
|
|
|
<artifactId>keycloak-server-spi-private</artifactId>
|
2019-10-11 10:47:46 +00:00
|
|
|
</dependency>
|
2019-11-19 16:05:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2019-12-09 15:01:52 +00:00
|
|
|
<artifactId>keycloak-server-spi</artifactId>
|
2019-11-19 16:05:15 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-core</artifactId>
|
|
|
|
</dependency>
|
2019-10-29 12:41:38 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2020-02-07 16:24:19 +00:00
|
|
|
<artifactId>quarkus-agroal</artifactId>
|
2019-10-29 12:41:38 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2020-02-14 15:07:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-08 09:20:37 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2019-10-29 12:41:38 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.jandex</groupId>
|
|
|
|
<artifactId>jandex-maven-plugin</artifactId>
|
|
|
|
<version>1.0.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-index</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jandex</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-02-14 15:07:37 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<environmentVariables>
|
|
|
|
<KEYCLOAK_CAMEL_CASE_SCOPE_CAMEL_CASE_PROP>foobar</KEYCLOAK_CAMEL_CASE_SCOPE_CAMEL_CASE_PROP>
|
|
|
|
</environmentVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-29 12:41:38 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
</project>
|