jwt-servlet-auth-servlet5-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-servlet5-integration-tests</artifactId> <version>1.0.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.telicent.public</groupId> <artifactId>jwt-servlet-auth-integration-tests</artifactId> <version>1.0.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>jwt-servlet-auth-servlet5-integration-tests</artifactId> <name>Telicent - JWT Servlet Auth - Integration Tests - Servlet 5.x (jakarta.servlet)</name> <properties> <license.header.path>${project.parent.parent.basedir}</license.header.path> </properties> <dependencies> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-servlet5</artifactId> <version>${project.version}</version> </dependency> <!-- Servlet 5.x Dependencies --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${dependency.slf4j}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-core</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-common-integration-tests</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${dependency.jetty12}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee9</groupId> <artifactId>jetty-ee9-servlet</artifactId> <version>${dependency.jetty12}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee9</groupId> <artifactId>jetty-ee9-webapp</artifactId> <version>${dependency.jetty12}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${plugin.jacoco}</version> </plugin> </plugins> </build> </project>