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 d1fd47c commit f9e0c85Copy full SHA for f9e0c85
server/build.gradle
@@ -407,6 +407,8 @@ tasks.named("sourcesJar").configure {
407
/** Compares the current build against a laltest released version or the version supplied through 'japicmp.compare.version' system property */
408
tasks.register("japicmp", me.champeau.gradle.japicmp.JapicmpTask) {
409
logger.info("Comparing public APIs from ${version} to ${japicmpCompareTarget}")
410
+ // See please https://github.com/siom79/japicmp/issues/201
411
+ compatibilityChangeExcludes = [ "METHOD_ABSTRACT_NOW_DEFAULT" ]
412
oldClasspath.from(files("${buildDir}/japicmp-target/opensearch-${japicmpCompareTarget}.jar"))
413
newClasspath.from(tasks.named('jar'))
414
onlyModified = true
0 commit comments