spring-boot-starter-httpclient5-actuator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient5-actuator</artifactId> <version>1.1.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>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient5-parent</artifactId> <version>1.1.0</version> </parent> <artifactId>spring-boot-starter-httpclient5-actuator</artifactId> <properties> <dropwizard-metrics.version>4.2.28</dropwizard-metrics.version> </properties> <dependencies> <dependency> <groupId>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient5</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-httpclient5</artifactId> <version>${dropwizard-metrics.version}</version> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-jmx</artifactId> <version>${dropwizard-metrics.version}</version> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${dropwizard-metrics.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> </project>