dropwizard-resilience4j-bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.expediagroup.dropwizard</groupId> <artifactId>dropwizard-resilience4j-bundle</artifactId> <version>3.2.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.expediagroup.dropwizard</groupId> <artifactId>dropwizard-resilience4j-bundle</artifactId> <version>3.2.2</version> <packaging>jar</packaging> <name>dropwizard-resilience4j-bundle</name> <description>Lightweight Resilience4j integration for Dropwizard</description> <url>https://github.com/ExpediaGroup/dropwizard-resilience4j-bundle</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/ExpediaGroup/dropwizard-resilience4j-bundle</url> <connection>scm:git:ssh://git@github.com/ExpediaGroup/dropwizard-resilience4j-bundle.git</connection> <developerConnection>scm:git:ssh://git@github.com/ExpediaGroup/dropwizard-resilience4j-bundle.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <name>Expedia Group Committers</name> <email>oss@expediagroup.com</email> <organization>Expedia Group</organization> <organizationUrl>https://www.expediagroup.com/</organizationUrl> </developer> <developer> <name>Brian Reischl</name> <email>breischl@vrbo.com</email> <organization>Vrbo</organization> <organizationUrl>https://www.vrbo.com</organizationUrl> </developer> </developers> <properties> <!--Java--> <java.source.version>11</java.source.version> <java.target.version>11</java.target.version> <!--Encoding--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- JaCoCo Coverage --> <coverage.line>0.80</coverage.line> <coverage.branch>0.80</coverage.branch> <!-- Plugins --> <compiler.pluginVersion>3.9.0</compiler.pluginVersion> <coverage.jacoco.pluginVersion>0.8.7</coverage.jacoco.pluginVersion> <enforcer.pluginVersion>3.0.0</enforcer.pluginVersion> <javadoc.pluginVersion>3.3.2</javadoc.pluginVersion> <preparationGoals>clean install</preparationGoals> <release.pluginVersion>3.0.0-M5</release.pluginVersion> <source.pluginVersion>3.2.1</source.pluginVersion> <surefire.pluginVersion>3.0.0-M5</surefire.pluginVersion> <!-- OSSRH --> <nexusStaging.pluginVersion>1.6.12</nexusStaging.pluginVersion> <assertj.version>3.21.0</assertj.version> <dropwizard.version>2.0.28</dropwizard.version> <hk2-api.version>2.6.1</hk2-api.version> <jackson.version>2.10.5.20201202</jackson.version> <junit5.version>5.8.2</junit5.version> <metrics4.version>4.1.29</metrics4.version> <resilience4j.version>1.7.0</resilience4j.version> <slf4j.version>1.7.32</slf4j.version> <validation-api.version>2.0.2</validation-api.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>${jackson.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-bom</artifactId> <version>${dropwizard.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-bom</artifactId> <version>${metrics4.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-bom</artifactId> <version>${resilience4j.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>${validation-api.version}</version> </dependency> <dependency> <groupId>org.glassfish.hk2</groupId> <artifactId>hk2-api</artifactId> <version>${hk2-api.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-jackson</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-jersey</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-util</artifactId> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-circuitbreaker</artifactId> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-metrics</artifactId> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-retry</artifactId> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-timelimiter</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.hk2</groupId> <artifactId>hk2-api</artifactId> </dependency> <!-- Test scoped dependencies --> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.pluginVersion}</version> <configuration> <fork>true</fork> <compilerArguments> <parameters /> </compilerArguments> <source>${java.source.version}</source> <target>${java.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.pluginVersion}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${enforcer.pluginVersion}</version> <executions> <execution> <id>enforce-jakarta-apis</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedDependencies> <excludes> <!-- Replaced with jakarta.activation:jakarta.activation-api --> <exclude>javax.activation:javax.activation-api</exclude> <!-- Replaced with jakarta.annotation:jakarta.annotation-api --> <exclude>javax.annotation:javax.annotation-api</exclude> <!-- Replaced with jakarta.inject:jakarta.inject-api or org.glassfish.hk2.external:jakarta.inject --> <exclude>javax.inject:javax.inject</exclude> <!-- Replaced with jakarta.servlet:jakarta.servlet-api --> <exclude>javax.servlet:javax.servlet-api</exclude> <!-- Replaced with jakarta.validation:jakarta.validation-api --> <exclude>javax.validation:validation-api</exclude> <!-- Replaced with jakarta.xml.bind:jakarta.xml.bind-api --> <exclude>javax.xml.bind:jaxb-api</exclude> </excludes> </bannedDependencies> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source.pluginVersion}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.pluginVersion}</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${release.pluginVersion}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>signed</releaseProfiles> <!-- to ensure we only deploy during release:perform --> <goals>deploy</goals> <!-- to ensure that tags are of the right format --> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexusStaging.pluginVersion}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jacoco-coverage</id> <activation> <property> <!-- Run by default for all builds, unless coverage is disabled. --> <name>!skipCoverage</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${coverageArgLine}</argLine> <!-- needed for jacoco --> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${coverage.jacoco.pluginVersion}</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>coverageArgLine</propertyName> </configuration> </execution> <execution> <id>default-check</id> <goals> <goal>report</goal> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>${coverage.line}</minimum> </limit> <limit> <counter>BRANCH</counter> <value>COVEREDRATIO</value> <minimum>${coverage.branch}</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>