svn commit: r1755481 - /ofbiz/trunk/build.gradle

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1755481 - /ofbiz/trunk/build.gradle

jleroux@apache.org
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'