Skip to content

Commit b82291c

Browse files
authored
Update japicmp plugin version to 0.4.1 (#6159)
1 parent b3858d7 commit b82291c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
plugins {
1515
id 'io.franzbecker.gradle-lombok' version '5.0.0'
1616
id 'com.github.johnrengelman.shadow' version '7.1.2'
17-
id 'me.champeau.gradle.japicmp' version '0.2.9' apply false
17+
id 'me.champeau.gradle.japicmp' version '0.4.1' apply false
1818
id 'com.diffplug.spotless' version '6.11.0' apply false
1919
id 'org.gradle.test-retry' version '1.4.1'
2020
}

gradle/japicmp.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ tasks.japicmp {
1515
// have an existing published version.
1616
enabled = ! configurations.baseline.copy().resolvedConfiguration.lenientConfiguration.getFiles().empty
1717

18-
oldClasspath = configurations.baseline
19-
newClasspath = shadowJar.outputs.files
18+
oldClasspath.from(configurations.baseline)
19+
newClasspath.from(shadowJar.outputs.files)
2020
ignoreMissingClasses = true
2121

2222
accessModifier = "protected"

0 commit comments

Comments
 (0)