You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ta...@apache.org on 2016/12/08 09:17:04 UTC

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

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') &&