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>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.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>
|
2020-07-16 20:44:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-quarkus-server</artifactId>
|
|
|
|
</dependency>
|
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>
|
2023-08-15 13:19:46 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-launcher</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
</exclusion>
|
2023-11-16 16:15:44 +00:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.inject</artifactId>
|
|
|
|
</exclusion>
|
2023-08-15 13:19:46 +00:00
|
|
|
</exclusions>
|
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>
|
2019-11-28 22:06:13 +00:00
|
|
|
</dependency>
|
2020-07-09 15:28:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-12-10 15:41:51 +00:00
|
|
|
<artifactId>quarkus-reactive-routes-deployment</artifactId>
|
2023-08-15 12:00:33 +00:00
|
|
|
<exclusions>
|
|
|
|
<!-- Can be removed as part of the https://github.com/keycloak/keycloak/issues/22455 enhancement -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-vertx-http-dev-ui-resources</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2024-08-21 16:38:04 +00:00
|
|
|
<artifactId>quarkus-rest-deployment</artifactId>
|
2019-11-19 16:05:15 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
2024-08-21 16:38:04 +00:00
|
|
|
<artifactId>quarkus-rest-jackson-deployment</artifactId>
|
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>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-common</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-deployment</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-h2</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-postgresql</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-mariadb</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-05-12 18:51:46 +00:00
|
|
|
</dependency>
|
2020-10-21 12:37:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-jdbc-mysql-deployment</artifactId>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-mysql</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-07-03 16:19:23 +00:00
|
|
|
</dependency>
|
2021-11-09 16:52:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-jdbc-mssql-deployment</artifactId>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-mssql</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-11-09 16:52:40 +00:00
|
|
|
</dependency>
|
2021-11-10 23:59:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-jdbc-oracle-deployment</artifactId>
|
2023-07-04 10:46:30 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-devservices-oracle</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-11-10 23:59:50 +00:00
|
|
|
</dependency>
|
2020-05-12 18:51:46 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-bootstrap-core</artifactId>
|
2020-05-12 18:51:46 +00:00
|
|
|
</dependency>
|
2020-10-21 08:10:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-smallrye-health-deployment</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2022-10-31 16:09:06 +00:00
|
|
|
<artifactId>quarkus-micrometer-deployment</artifactId>
|
2023-11-22 08:37:24 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.metadata</groupId>
|
|
|
|
<artifactId>jboss-metadata-web</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-10-31 16:09:06 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-micrometer-registry-prometheus-deployment</artifactId>
|
2020-10-21 08:10:50 +00:00
|
|
|
</dependency>
|
2020-05-13 19:56:09 +00:00
|
|
|
<dependency>
|
2020-05-18 22:48:13 +00:00
|
|
|
<groupId>io.quarkus</groupId>
|
2022-03-08 10:04:43 +00:00
|
|
|
<artifactId>quarkus-logging-json-deployment</artifactId>
|
2020-05-13 19:56:09 +00:00
|
|
|
</dependency>
|
2024-08-08 14:48:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-opentelemetry-deployment</artifactId>
|
|
|
|
</dependency>
|
2022-06-28 16:54:14 +00:00
|
|
|
|
2022-03-01 11:31:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2022-03-08 10:04:43 +00:00
|
|
|
<artifactId>quarkus-junit5-internal</artifactId>
|
|
|
|
<scope>test</scope>
|
2022-03-01 11:31:15 +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>
|
2024-06-21 12:19:31 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
2023-05-18 14:37:55 +00:00
|
|
|
<version>${quarkus.build.version}</version>
|
2020-05-18 22:48:13 +00:00
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-02-14 15:07:37 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2020-11-12 13:42:51 +00:00
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
2020-02-14 15:07:37 +00:00
|
|
|
</plugin>
|
2019-10-29 12:41:38 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
</project>
|