vpro-shared-rs-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.vpro.shared</groupId> <artifactId>vpro-shared-rs-client</artifactId> <version>5.10.0</version> </dependency>
<?xml version="1.0"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>vpro-shared-parent</artifactId> <groupId>nl.vpro.shared</groupId> <version>5.10.0</version> </parent> <artifactId>vpro-shared-rs-client</artifactId> <description> Utilities related to jakarta.ws.rs.client </description> <properties> <vpro.shared.module.postfix>rs.client</vpro.shared.module.postfix> </properties> <dependencies> <dependency> <groupId>nl.vpro.shared</groupId> <artifactId>vpro-shared-util</artifactId> </dependency> <dependency> <groupId>nl.vpro.shared</groupId> <artifactId>vpro-shared-jackson2</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.jakarta.rs</groupId> <artifactId>jackson-jakarta-rs-json-provider</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> <version>3.1.5</version> <!-- 3 is jakarta.* --> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>write-project-properties</goal> </goals> <configuration> <outputFile>${project.build.outputDirectory}/maven.properties</outputFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>