You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2016/10/15 07:09:13 UTC

svn commit: r1765020 - /poi/trunk/build.gradle

Author: centic
Date: Sat Oct 15 07:09:13 2016
New Revision: 1765020

URL: http://svn.apache.org/viewvc?rev=1765020&view=rev
Log:
Update to japicmp-gradle-plugin:0.1.2 and enable newly added properties

Modified:
    poi/trunk/build.gradle

Modified: poi/trunk/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1765020&r1=1765019&r2=1765020&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Sat Oct 15 07:09:13 2016
@@ -16,11 +16,11 @@
 ==================================================================== */
 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")
 	}
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org