Categories |
CategoriesSpring Boot Container Microservices |
---|---|
GroupId | GroupIdorg.springframework.boot |
ArtifactId | ArtifactIdspring-boot-starter-actuator |
Version | Version1.1.7.RELEASE |
Type | Typejar |
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-actuator/ -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>1.1.7.RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-actuator/
implementation 'org.springframework.boot:spring-boot-starter-actuator:1.1.7.RELEASE'
// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-actuator/
implementation ("org.springframework.boot:spring-boot-starter-actuator:1.1.7.RELEASE")
'org.springframework.boot:spring-boot-starter-actuator:jar:1.1.7.RELEASE'
<dependency org="org.springframework.boot" name="spring-boot-starter-actuator" rev="1.1.7.RELEASE">
<artifact name="spring-boot-starter-actuator" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.springframework.boot', module='spring-boot-starter-actuator', version='1.1.7.RELEASE')
)
libraryDependencies += "org.springframework.boot" % "spring-boot-starter-actuator" % "1.1.7.RELEASE"
[org.springframework.boot/spring-boot-starter-actuator "1.1.7.RELEASE"]