feat(prometheus): add prometheus connector deps

This commit is contained in:
Patrick Sy 2024-12-13 07:04:36 +01:00
parent 22caee3d03
commit 34ef850730
Signed by: Patrick.Sy
GPG key ID: DDDC8EC51823195E
2 changed files with 6 additions and 0 deletions

View file

@ -40,6 +40,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'javax.cache:cache-api'
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'

View file

@ -152,6 +152,11 @@
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
</dependencies>
<build>