quarkus-microprofile-tck-jwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile-tck-jwt</artifactId> <version>3.4.1</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile-tck</artifactId> <version>3.4.1</version> </parent> <artifactId>quarkus-microprofile-tck-jwt</artifactId> <name>Quarkus - MicroProfile - TCK - JWT</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <suiteXmlFiles> <suiteXmlFile>${project.build.directory}/tck-suite/suites/tck-base-suite.xml</suiteXmlFile> </suiteXmlFiles> <systemPropertyVariables> <mp.jwt.tck.jwks.baseURL>http://localhost:8081/</mp.jwt.tck.jwks.baseURL> </systemPropertyVariables> <dependenciesToScan> <dependency>org.eclipse.microprofile.jwt:microprofile-jwt-auth-tck</dependency> </dependenciesToScan> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-suite-files</id> <phase>generate-test-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.eclipse.microprofile.jwt</groupId> <artifactId>microprofile-jwt-auth-tck</artifactId> <version>${microprofile.jwt.version}</version> <type>test-jar</type> <classifier>tests</classifier> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/tck-suite</outputDirectory> <includes>**/tck-base-suite.xml</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.jwt</groupId> <artifactId>microprofile-jwt-auth-tck</artifactId> <version>${microprofile.jwt.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.bitbucket.b_c</groupId> <artifactId>jose4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.microprofile.jwt</groupId> <artifactId>microprofile-jwt-auth-tck</artifactId> <version>${microprofile.jwt.version}</version> <scope>test</scope> <type>test-jar</type> <exclusions> <exclusion> <groupId>org.bitbucket.b_c</groupId> <artifactId>jose4j</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>