Skip to content

Commit

Permalink
Update plugin japicmp to v0.4.0 (#2948)
Browse files Browse the repository at this point in the history
Had to make a few adjustments to define old/new classpaths (new syntax).

Co-authored-by: Simon Baslé <sbasle@vmware.com>
  • Loading branch information
renovate-bot and simonbasle committed Mar 8, 2022
1 parent 6906ce3 commit 321b057
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ asciidoctor-convert = { id = "org.asciidoctor.jvm.convert", version.ref = "ascii
asciidoctor-pdf = { id = "org.asciidoctor.jvm.pdf", version.ref = "asciidoctor" }
bnd = { id = "biz.aQute.bnd.builder", version = "6.2.0" }
download = { id = "de.undercouch.download", version = "5.0.1" }
japicmp = { id = "me.champeau.gradle.japicmp", version = "0.3.1" }
japicmp = { id = "me.champeau.gradle.japicmp", version = "0.4.0" }
jcstress = { id = "io.github.reyerizo.gradle.jcstress", version = "0.8.13" }
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
nohttp = { id = "io.spring.nohttp", version = "0.0.10" }
Expand Down
4 changes: 2 additions & 2 deletions reactor-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ task japicmp(type: JapicmpTask) {
dependsOn(jar)
}

oldClasspath = files("${buildDir}/baselineLibs/reactor-core-${libs.versions.baseline.core.api.get()}.jar")
newClasspath = files(jar.archiveFile)
oldClasspath.from(files("${buildDir}/baselineLibs/reactor-core-${libs.versions.baseline.core.api.get()}.jar"))
newClasspath.from(files(jar.archiveFile))
onlyBinaryIncompatibleModified = true
failOnModification = true
failOnSourceIncompatibility = true
Expand Down
4 changes: 2 additions & 2 deletions reactor-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ task japicmp(type: JapicmpTask) {
dependsOn(downloadBaseline)
}

oldClasspath = files("${buildDir}/baselineLibs/reactor-test-${libs.versions.baseline.core.api.get()}.jar")
newClasspath = files(jar.archiveFile)
oldClasspath.from(files("${buildDir}/baselineLibs/reactor-test-${libs.versions.baseline.core.api.get()}.jar"))
newClasspath.from(files(jar.archiveFile))
onlyBinaryIncompatibleModified = true
failOnModification = true
failOnSourceIncompatibility = true
Expand Down

0 comments on commit 321b057

Please sign in to comment.