20 lines
338 B
Groovy
20 lines
338 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'org.baeldung'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
implementation 'io.micrometer:micrometer-core:1.12.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |