2020-05-18 22:48:13 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-08 09:20:37 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-quarkus-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2020-04-29 10:43:07 +00:00
|
|
|
<version>11.0.0-SNAPSHOT</version>
|
2019-10-08 09:20:37 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-05-18 22:48:13 +00:00
|
|
|
<name>Keycloak Quarkus Server Deployment</name>
|
|
|
|
<artifactId>keycloak-quarkus-server-deployment</artifactId>
|
2019-10-08 09:20:37 +00:00
|
|
|
|
|
|
|
<dependencies>
|
2019-10-11 10:47:46 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-core-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2020-02-07 16:24:19 +00:00
|
|
|
</dependency>
|
2019-11-28 22:06:13 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-arc-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2019-11-28 22:06:13 +00:00
|
|
|
</dependency>
|
2019-10-11 10:47:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<artifactId>keycloak-quarkus-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2019-10-11 10:47:46 +00:00
|
|
|
</dependency>
|
2019-11-19 16:05:15 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-resteasy-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2019-11-19 16:05:15 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-resteasy-jackson-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2020-03-06 13:29:55 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-hibernate-orm-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2019-11-19 16:05:15 +00:00
|
|
|
</dependency>
|
2019-10-29 12:41:38 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<artifactId>quarkus-jdbc-h2-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2020-05-13 19:56:09 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-jdbc-postgresql-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2019-10-29 12:41:38 +00:00
|
|
|
</dependency>
|
2020-05-12 18:51:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<artifactId>quarkus-jdbc-mariadb-deployment</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2020-05-12 18:51:46 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-bootstrap-core</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
2020-05-12 18:51:46 +00:00
|
|
|
</dependency>
|
2020-05-13 19:56:09 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-junit5-internal</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
<scope>test</scope>
|
2020-05-13 19:56:09 +00:00
|
|
|
</dependency>
|
2020-02-14 15:07:37 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.rest-assured</groupId>
|
|
|
|
<artifactId>rest-assured</artifactId>
|
2020-02-14 15:07:37 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-08 09:20:37 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2019-10-29 12:41:38 +00:00
|
|
|
<build>
|
2020-05-18 22:48:13 +00:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2019-10-29 12:41:38 +00:00
|
|
|
<plugins>
|
2020-05-18 22:48:13 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-05-13 19:56:09 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>extract-liquibase-for-indexing</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.liquibase</includeGroupIds>
|
|
|
|
<outputDirectory>${project.build.directory}/liquibase-extracted</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-10-29 12:41:38 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.jandex</groupId>
|
|
|
|
<artifactId>jandex-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-index</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jandex</goal>
|
|
|
|
</goals>
|
2020-05-13 19:56:09 +00:00
|
|
|
<phase>process-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<indexName>liquibase.idx</indexName>
|
|
|
|
<processDefaultFileSet>false</processDefaultFileSet>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${project.build.directory}/liquibase-extracted</directory>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-liquibase-index</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/classes/</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/liquibase-extracted</directory>
|
|
|
|
<includes>
|
|
|
|
<include>META-INF/liquibase.idx</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
2019-10-29 12:41:38 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-02-14 15:07:37 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-05-18 22:48:13 +00:00
|
|
|
<skip>true</skip>
|
2020-02-14 15:07:37 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-29 12:41:38 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
</project>
|