oblak/cloud-core/build.gradle.kts
Alexander Söderberg 46a3f7129f build: add revapi to core api modules (#361)
this way we can detect API/ABI breaks between versions. it'll compare to the previous tag.
2022-06-18 22:52:58 -07:00

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)
}