==================================================================== */
buildscript {
repositories {
- jcenter()
+ maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
- classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.1.1'
+ classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.1.2'
}
}
baseline = 'org.apache.poi:poi:' + japicmpversion + '@jar'
to = jar.archivePath
onlyModified = true
- // not available, see issue #6: onlyBinaryIncompatibleModified = true
+ onlyBinaryIncompatibleModified = true
failOnModification = false
txtOutputFile = file("$buildDir/reports/japi.txt")
- // not available, see issue #6: htmlOutputFile = file("$buildDir/reports/japi.html")
+ htmlOutputFile = file("$buildDir/reports/japi.html")
}
}
baseline = 'org.apache.poi:poi-ooxml:' + japicmpversion + '@jar'
to = jar.archivePath
onlyModified = true
- // not available, see issue #6: onlyBinaryIncompatibleModified = true
+ onlyBinaryIncompatibleModified = true
failOnModification = false
txtOutputFile = file("$buildDir/reports/japi.txt")
- // not available, see issue #6: htmlOutputFile = file("$buildDir/reports/japi.html")
+ htmlOutputFile = file("$buildDir/reports/japi.html")
}
}
baseline = 'org.apache.poi:poi-excelant:' + japicmpversion + '@jar'
to = jar.archivePath
onlyModified = true
- // not available, see issue #6: onlyBinaryIncompatibleModified = true
+ onlyBinaryIncompatibleModified = true
failOnModification = false
txtOutputFile = file("$buildDir/reports/japi.txt")
- // not available, see issue #6: htmlOutputFile = file("$buildDir/reports/japi.html")
+ htmlOutputFile = file("$buildDir/reports/japi.html")
}
}
baseline = 'org.apache.poi:poi-scratchpad:' + japicmpversion + '@jar'
to = jar.archivePath
onlyModified = true
- // not available, see issue #6: onlyBinaryIncompatibleModified = true
+ onlyBinaryIncompatibleModified = true
failOnModification = false
txtOutputFile = file("$buildDir/reports/japi.txt")
- // not available, see issue #6: htmlOutputFile = file("$buildDir/reports/japi.html")
+ htmlOutputFile = file("$buildDir/reports/japi.html")
}
}