Skip to content

Instantly share code, notes, and snippets.

@sonus21
Created November 5, 2019 17:09
Show Gist options
  • Select an option

  • Save sonus21/ebfbe7db65031e2bec80aee968ed83e4 to your computer and use it in GitHub Desktop.

Select an option

Save sonus21/ebfbe7db65031e2bec80aee968ed83e4 to your computer and use it in GitHub Desktop.
Micrometer dependencies
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// https://mvnrepository.com/artifact/com.h2database/h2
compile group: 'com.h2database', name: 'h2', version: '1.4.200'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment