Author: jleroux
Date: Sat Aug 13 13:53:53 2016
New Revision: 1756269
URL:
http://svn.apache.org/viewvc?rev=1756269&view=revLog:
Removes the soon useless start, stop and debug tasks
Modified:
ofbiz/trunk/build.gradle
Modified: ofbiz/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1756269&r1=1756268&r2=1756269&view=diff==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Sat Aug 13 13:53:53 2016
@@ -320,16 +320,6 @@ task testIntegration(group: ofbizServer)
description 'Run OFBiz integration tests; You must run loadDefault before running this task'
}
-task start(group: ofbizServer) {
- dependsOn 'ofbiz --start'
- description 'Start an OFBiz instance'
-}
-
-task stop(group: ofbizServer) {
- dependsOn 'ofbiz --shutdown'
- description 'Stop currently running instance'
-}
-
task terminateOfbiz(group: ofbizServer,
description: 'Force termination of any running OFBiz servers, only use if \"--shutdown\" command fails') << {
def os = System.getProperty("os.name").toLowerCase()
@@ -639,12 +629,6 @@ 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') << {