registry-aware-jersey-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kiwiproject</groupId> <artifactId>registry-aware-jersey-client</artifactId> <version>2.3.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>org.kiwiproject</groupId> <artifactId>kiwi-parent</artifactId> <version>3.0.29</version> </parent> <artifactId>registry-aware-jersey-client</artifactId> <version>2.3.1</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description> Extensions to Jersey Client providing awareness of services registered in a service registry like Consul or Eureka </description> <url>https://github.com/kiwiproject/registry-aware-jersey-client</url> <inceptionYear>2020</inceptionYear> <scm> <connection>scm:git:https://github.com/kiwiproject/registry-aware-jersey-client.git</connection> <developerConnection>scm:git:git@github.com:kiwiproject/registry-aware-jersey-client.git</developerConnection> <url>https://github.com/kiwiproject/registry-aware-jersey-client</url> <tag>v2.3.1</tag> </scm> <properties> <!-- Versions for required dependencies --> <dropwizard-config-providers.version>2.3.8</dropwizard-config-providers.version> <kiwi.version>4.12.0</kiwi.version> <kiwi-bom.version>2.0.29</kiwi-bom.version> <service-discovery-client.version>2.1.8</service-discovery-client.version> <!-- Versions for test dependencies --> <kiwi-test.version>3.11.1</kiwi-test.version> <!-- Sonar properties --> <sonar.projectKey>kiwiproject_registry-aware-jersey-client</sonar.projectKey> <sonar.organization>kiwiproject</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-bom</artifactId> <version>${kiwi-bom.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi</artifactId> <version>${kiwi.version}</version> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-test</artifactId> <version>${kiwi-test.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Required dependencies --> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>dropwizard-config-providers</artifactId> <version>${dropwizard-config-providers.version}</version> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-util</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi</artifactId> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>service-discovery-client</artifactId> <version>${service-discovery-client.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Provided dependencies --> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-client</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> </project>