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

Taher Alkhateeb
Author: taher
Date: Thu Dec  8 09:17:04 2016
New Revision: 1773202

URL: http://svn.apache.org/viewvc?rev=1773202&view=rev
Log:
Improved: Refactor and simplify the startup sequence in OFBiz
(OFBIZ-8337)

Fix a minor exclusion typo in the sourceSets block

Thanks: Jacques Le Roux for reporting the issue

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1773202&r1=1773201&r2=1773202&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Thu Dec  8 09:17:04 2016
@@ -208,7 +208,7 @@ sourceSets {
             exclude excludedJavaSources
             exclude excludedConfigFiles
             // Below are necessary for unit tests run by Gradle and integration tests
-            exclude { FileTreeElement elem -> elem.getName().contains('.Labels.xml') }
+            exclude { FileTreeElement elem -> elem.getName().contains('Labels.xml') }
             exclude { FileTreeElement elem -> elem.getName().contains('.properties') &&
                 !elem.getName().contains('start.properties') &&
                 !elem.getName().contains('load-data.properties') &&