this way we can detect API/ABI breaks between versions. it'll compare to the previous tag.
12 lines
277 B
Kotlin
12 lines
277 B
Kotlin
plugins {
|
|
id("cloud.base-conventions")
|
|
id("com.palantir.revapi")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.cloudServices)
|
|
compileOnly(libs.guice)
|
|
testImplementation(libs.jmhCore)
|
|
testImplementation(libs.jmhGeneratorAnnprocess)
|
|
testImplementation(libs.guice)
|
|
}
|