dropwizard-jose-jwt-example-webapp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sigpwned</groupId> <artifactId>dropwizard-jose-jwt-example-webapp</artifactId> <version>3.0.6</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/maven-v4_0_0.xsd"> <parent> <artifactId>dropwizard-jose-jwt-module</artifactId> <groupId>com.sigpwned</groupId> <version>3.0.6</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>dropwizard-jose-jwt-example-webapp</artifactId> <name>dropwizard-jose-jwt-example-webapp</name> <build> <finalName>${project.name}</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> <transformer> <mainClass>com.sigpwned.dropwizard.jose.jwt.example.webapp.ExampleWebapp</mainClass> </transformer> </transformers> </configuration> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.class</exclude> <exclude>META-INF/versions/*/module-info.class</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <version>3.0.0-beta.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jersey-test-framework-core</artifactId> <groupId>org.glassfish.jersey.test-framework</groupId> </exclusion> <exclusion> <artifactId>jersey-test-framework-provider-inmemory</artifactId> <groupId>org.glassfish.jersey.test-framework.providers</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.5.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sigpwned</groupId> <artifactId>dropwizard-jose-jwt-keygen-tool</artifactId> <version>3.0.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>slf4j-simple</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>discourse-core</artifactId> <groupId>com.sigpwned</groupId> </exclusion> <exclusion> <artifactId>discourse-validation</artifactId> <groupId>com.sigpwned</groupId> </exclusion> <exclusion> <artifactId>bcpkix-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>