svn commit: r1755451 - /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: r1755451 - /ofbiz/trunk/build.gradle

jleroux@apache.org
Author: jleroux
Date: Sun Aug  7 18:09:04 2016
New Revision: 1755451

URL: http://svn.apache.org/viewvc?rev=1755451&view=rev
Log:
Adds compileJava.options.encoding = 'UTF-8' to see if it fixed Builbot issue as reported by Taher's investigation

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1755451&r1=1755450&r2=1755451&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Sun Aug  7 18:09:04 2016
@@ -33,6 +33,7 @@ ext.ofbizMainClass = 'org.apache.ofbiz.b
 javadoc.failOnError = false
 sourceCompatibility = '1.8'
 targetCompatibility = '1.8'
+compileJava.options.encoding = 'UTF-8'
 
 // root and subproject settings
 defaultTasks 'build'
@@ -306,6 +307,7 @@ def cleanupGroup = 'Cleaning'
 def ofbizServer = 'OFBiz Server'
 def sysadminGroup = 'System Administration'
 def committerGroup = 'OFBiz committers'
+def developerGroup = 'OFBiz developers'
 
 // ========== OFBiz Server tasks ==========
 
@@ -638,6 +640,12 @@ task cleanAll(group: cleanupGroup, depen
     description 'Execute all cleaning tasks.'
 }
 
+// ========== Tasks for OFBiz developers ==========
+task debug(group: developerGroup) {
+    dependsOn 'ofbiz ofbizDebug'
+    description 'Debug an OFBiz instance'
+}
+
 // ========== Tasks for OFBiz committers ==========
 def websiteDir = "${rootDir}/../site"
 task copyDtds(group: committerGroup, description: 'Copy all DTDs from OFBiz instance to website') << {