holon-gson-jaxrs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.holon-platform.json</groupId> <artifactId>holon-gson-jaxrs</artifactId> <version>6.0.0</version> </dependency>
<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>com.holon-platform.json</groupId> <artifactId>holon-json-root</artifactId> <version>6.0.0</version> </parent> <artifactId>holon-gson-jaxrs</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Holon JSON support for JAX-RS using Gson</description> <url>https://holon-platform.com</url> <dependencies> <!-- Holon Gson --> <dependency> <groupId>com.holon-platform.json</groupId> <artifactId>holon-gson</artifactId> <version>${project.version}</version> </dependency> <!-- JAX-RS api --> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <version>${jax-rs.api.version}</version> <scope>provided</scope> </dependency> <!-- Optional Jersey --> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> <version>${jersey.version}</version> <optional>true</optional> </dependency> <!-- Test Jersey integration --> <dependency> <groupId>com.holon-platform.core</groupId> <artifactId>holon-test</artifactId> <version>${holon.core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.test-framework.providers</groupId> <artifactId>jersey-test-framework-provider-grizzly2</artifactId> <version>${jersey.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> <version>${jersey.version}</version> <scope>test</scope> </dependency> <!-- Test Resteasy integration --> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-core-spi</artifactId> <version>${resteasy.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-undertow</artifactId> <version>${resteasy.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- JDK9 Automatic-Module-Name --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.holonplatform.gson.jaxrs</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>