We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33218e7 commit f31ee79Copy full SHA for f31ee79
gradle/japicmp.gradle
@@ -11,6 +11,10 @@ dependencies {
11
tasks.japicmp {
12
dependsOn(tasks.shadowJar)
13
14
+ // Disable if baseline dependencies cannot be resolved - such as when developing a new module that doesn't
15
+ // have an existing published version.
16
+ enabled = ! configurations.baseline.copy().resolvedConfiguration.lenientConfiguration.getFiles().empty
17
+
18
oldClasspath = configurations.baseline
19
newClasspath = shadowJar.outputs.files
20
ignoreMissingClasses = true
0 commit comments