quarkus-oidc-client-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-oidc-client-deployment</artifactId> <version>3.21.2</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>quarkus-oidc-client-parent</artifactId> <groupId>io.quarkus</groupId> <version>3.21.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-oidc-client-deployment</artifactId> <name>Quarkus - OpenID Connect Client - Deployment</name> <properties> <keycloak.url>http://localhost:8180/auth</keycloak.url> </properties> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-core-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-oidc-client</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-oidc-common-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-devservices-keycloak</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5-internal</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-client-common-synced</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>angus-activation</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-mutiny-deployment</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-oidc-deployment</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-client-deployment</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> <excludes> <exclude>keystore.jks</exclude> <exclude>keystore.pkcs12</exclude> </excludes> </testResource> <testResource> <directory>src/test/resources</directory> <filtering>false</filtering> <includes> <include>keystore.jks</include> <include>keystore.pkcs12</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>test-keycloak</id> <activation> <property> <name>test-containers</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>false</skip> <systemPropertyVariables> <keycloak.url>${keycloak.url}</keycloak.url> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>docker-keycloak</id> <activation> <property> <name>start-containers</name> </property> </activation> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> <images> <image> <name>${keycloak.docker.legacy.image}</name> <alias>quarkus-test-keycloak</alias> <run> <ports> <port>8180:8080</port> </ports> <env> <KEYCLOAK_USER>admin</KEYCLOAK_USER> <KEYCLOAK_PASSWORD>admin</KEYCLOAK_PASSWORD> </env> <log> <prefix>Keycloak:</prefix> <date>default</date> <color>cyan</color> </log> <wait> <!-- good docs found at: https://dmp.fabric8.io/#build-healthcheck --> <http> <url>http://localhost:8180</url> </http> <time>100000</time> </wait> </run> </image> </images> <allContainers>true</allContainers> </configuration> <executions> <execution> <id>docker-start</id> <phase>compile</phase> <goals> <goal>stop</goal> <goal>start</goal> </goals> </execution> <execution> <id>docker-stop</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>docker-prune</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>${docker-prune.location}</executable> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>