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

jleroux@apache.org
Author: jleroux
Date: Wed Aug 17 06:01:49 2016
New Revision: 1756577

URL: http://svn.apache.org/viewvc?rev=1756577&view=rev
Log:
Adds a copyToExternalRuntimeLibs task, to be possibly used in a QA, UAT or production environment

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1756577&r1=1756576&r2=1756577&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Wed Aug 17 06:01:49 2016
@@ -475,6 +475,11 @@ task createTenant(group: ofbizServer, de
     }
 }
 
+task copyToExternalRuntimeLibs(group: ofbizServer, type: Copy, description: 'Copy runtime libs. To be possibly used in a QA, UAT or production environment') {
+    into "$rootDir/externalRuntimeLibs"
+    from configurations.runtime
+}
+
 // ========== System Administration tasks ==========
 task createComponent(group: sysadminGroup, description: 'Create the layout of an OFBiz component in the hot-deploy folder.') << {