Skip to content

Commit

Permalink
[build] Bump japicmp baseline to 3.1.3, allow for exclusions
Browse files Browse the repository at this point in the history
This commit bumps the baseline to check against to the latest release,
3.1.3.RELEASE. Additionally, it bumps the japicmp plugin dependency so
that exclusions can be formulated, for exceptional situations where a
breaking change is necessary. Added a TODO to remember to do both things
after a release.
  • Loading branch information
simonbasle committed Jan 29, 2018
1 parent e660679 commit 1c0fa6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ plugins {
id 'org.asciidoctor.convert' version '1.5.6'
id "me.champeau.gradle.jmh" version "0.4.4" apply false
id "org.jetbrains.dokka" version "0.9.15"
id "me.champeau.gradle.japicmp" version "0.2.5"
id "me.champeau.gradle.japicmp" version "0.2.6"
}

apply from: "gradle/doc.gradle"
Expand Down Expand Up @@ -270,6 +270,9 @@ project('reactor-core') {
txtOutputFile = file("${project.buildDir}/reports/japi.txt")
ignoreMissingClasses = true
includeSynthetic = true

//TODO after a release, bump the gradle.properties baseline
//TODO after a release, remove the reactor-core exclusions below if any
}

javadoc {
Expand Down Expand Up @@ -438,6 +441,8 @@ project('reactor-test') {
txtOutputFile = file("${project.buildDir}/reports/japi.txt")
ignoreMissingClasses = true
includeSynthetic = true

//TODO after a release, remove the reactor-test exclusions below if any
}

javadoc {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.1.4.BUILD-SNAPSHOT
compatibleVersion=3.1.0.RELEASE
compatibleVersion=3.1.3.RELEASE

0 comments on commit 1c0fa6d

Please sign in to comment.