truelicense-jax-rs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.truelicense</groupId> <artifactId>truelicense-jax-rs</artifactId> <version>2.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (C) 2005-2015 Schlichtherle IT Services. - All rights reserved. Use is subject to license terms. --> <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> <prerequisites> <maven>${maven.enforcer.requireMavenVersion}</maven> </prerequisites> <parent> <groupId>net.java.truelicense</groupId> <artifactId>truelicense</artifactId> <version>2.4</version> </parent> <artifactId>truelicense-jax-rs</artifactId> <name>TrueLicense JAX-RS</name> <description> The TrueLicense JAX-RS module provides a RESTful web service interface for consuming license keys. </description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>truelicense-core</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>truelicense-core</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>truelicense-json</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>truelicense-json</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey.jersey-test-framework</groupId> <artifactId>jersey-test-framework-http</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <parallel>none</parallel> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>