dropwizard-healthcheck-extras
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.dyuti</groupId> <artifactId>dropwizard-healthcheck-extras</artifactId> <version>5.0.0-rc.3-1</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> <groupId>io.dyuti</groupId> <artifactId>dropwizard-healthcheck-extras</artifactId> <version>5.0.0-rc.3-1</version> <packaging>jar</packaging> <name>dropwizard-healthcheck-extras</name> <url>https://github.com/phaneesh/dropwizard-healthcheck-extras</url> <description>This bundle adds additional healthchecks which can used to ensure that the application and perform healthchecks with endpoint resources like proxies, external endpoints from a connectivity standpoint. It can also be used to monitor application metrics and disk-space-based health. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:https://github.com/phaneesh/dropwizard-healthcheck-extras.git</connection> <developerConnection>scm:git:https://github.com/phaneesh/dropwizard-healthcheck-extras.git </developerConnection> <tag>HEAD</tag> <url>https://github.com/phaneesh/dropwizard-healthcheck-extras</url> </scm> <developers> <developer> <id>phaneesh</id> <name>Phaneesh Nagaraja</name> <email>phaneesh.n@gmail.com</email> </developer> </developers> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/phaneesh/dropwizard-healthcheck-extras/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <dropwizard.version>5.0.0-rc.3</dropwizard.version> <guava.version>33.4.8-jre</guava.version> <lombok.version>1.18.38</lombok.version> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> <central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-bom</artifactId> <type>pom</type> <scope>import</scope> <version>${dropwizard.version}</version> </dependency> <!-- Dropwizard Dependencies for transitive deps like hibernate-core --> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-dependencies</artifactId> <type>pom</type> <scope>import</scope> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-validation</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <release>${maven.compiler.source}</release> <annotationProcessors> <annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor </annotationProcessor> </annotationProcessors> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-no-snapshots</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseDeps> <message>No Snapshots Allowed!</message> </requireReleaseDeps> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>21</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>7500BA57DC2B12B2</keyname> <gpgArguments> <argument>--pinentry-mode</argument> <argument>loopback</argument> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </project>