20 lines
338 B
Groovy
Raw Normal View History

2023-11-17 05:05:02 +00:00
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()
}