dropwizard-consul
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>dropwizard-consul</artifactId>
<version>1.5.0</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.34</version>
</parent>
<artifactId>dropwizard-consul</artifactId>
<version>1.5.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
A bundle for using Consul in Dropwizard applications.
</description>
<url>https://github.com/kiwiproject/dropwizard-consul</url>
<inceptionYear>2023</inceptionYear>
<scm>
<connection>scm:git:https://github.com/kiwiproject/dropwizard-consul.git</connection>
<developerConnection>scm:git:git@github.com:kiwiproject/dropwizard-consul.git</developerConnection>
<url>https://github.com/kiwiproject/dropwizard-consul</url>
<tag>v1.5.0</tag>
</scm>
<properties>
<!-- Versions for required dependencies -->
<consul-client.version>1.9.0</consul-client.version>
<kiwi-bom.version>2.3.0</kiwi-bom.version>
<!-- Versions for test dependencies -->
<kiwi.version>4.15.0</kiwi.version>
<!-- Sonar properties -->
<sonar.projectKey>kiwiproject_dropwizard-consul</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>
<!--
TODO: Remove this once on a dropwizard-logging version that uses 1.5.3 (or higher)
Prior to 1.5.3, this included its own org.jspecify.annotations.Nullable annotation
in its own source code, for some strange reason. Version 1.5.3 shaded it. See:
https://github.com/dropwizard/logback-throttling-appender/releases/tag/logback-throttling-appender-1.5.3
-->
<dependency>
<groupId>io.dropwizard.logback</groupId>
<artifactId>logback-throttling-appender</artifactId>
<version>1.5.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-configuration</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-lifecycle</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-servlets</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-util</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-validation</artifactId>
</dependency>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>consul-client</artifactId>
<version>${consul-client.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</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>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-healthchecks</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>kiwi</artifactId>
<version>${kiwi.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-consul</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>