]> source.dussan.org Git - poi.git/commitdiff
Update to japicmp-gradle-plugin:0.1.2 and enable newly added properties
authorDominik Stadler <centic@apache.org>
Sat, 15 Oct 2016 07:09:13 +0000 (07:09 +0000)
committerDominik Stadler <centic@apache.org>
Sat, 15 Oct 2016 07:09:13 +0000 (07:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1765020 13f79535-47bb-0310-9956-ffa450edef68

build.gradle

index 0e2af089d5d390f38405096438f7e412400b6fc6..6368c16bcfbe17c67b7da8b947a339d1334c4c2c 100644 (file)
 ==================================================================== */
 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'
        }
 }
 
@@ -154,10 +154,10 @@ project('main') {
                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")
        }
 }
 
@@ -197,10 +197,10 @@ project('ooxml') {
                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")
        }
 }
 
@@ -233,10 +233,10 @@ project('excelant') {
                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")
        }
 }
 
@@ -286,9 +286,9 @@ project('scratchpad') {
                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")
        }
 }