Author: jleroux
Date: Mon Aug  8 09:24:56 2016
New Revision: 1755481

URL: http://svn.apache.org/viewvc?rev=1755481&view=rev
Log:
Replaces change done at r1755451 "Adds compileJava.options.encoding = 'UTF-8' 
to see if it fixed Builbot issue as reported by Taher's investigation" with 
Taher's suggestion on dev ML current "code seems to apply encoding only on the
javaCompile task while my code applies a global jvm property that spans the 
whole project."

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1755481&r1=1755480&r2=1755481&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Mon Aug  8 09:24:56 2016
@@ -33,7 +33,7 @@ ext.ofbizMainClass = 'org.apache.ofbiz.b
 javadoc.failOnError = false
 sourceCompatibility = '1.8'
 targetCompatibility = '1.8'
-compileJava.options.encoding = 'UTF-8'
+System.setProperty("file.encoding", "UTF-8")
 
 // root and subproject settings
 defaultTasks 'build'


Reply via email to