Author: jacopoc
Date: Fri Sep 26 15:57:22 2014
New Revision: 1627818
URL:
http://svn.apache.org/r1627818Log:
Because of the "negate" attribute the entity-test.jar used to contain all the non-test classes (already in entity.jar).
This fix should be the right way to go but please review this commit because the syntax of these custom ant tasks is rather cryptic to me.
Modified:
ofbiz/trunk/framework/entity/build.xml
Modified: ofbiz/trunk/framework/entity/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/build.xml?rev=1627818&r1=1627817&r2=1627818&view=diff==============================================================================
--- ofbiz/trunk/framework/entity/build.xml (original)
+++ ofbiz/trunk/framework/entity/build.xml Fri Sep 26 15:57:22 2014
@@ -47,8 +47,8 @@ under the License.
<main-jar/>
<test-jar>
<test-selector>
- <filename name="META-INF/services" negate="true"/>
- <filename name="META-INF/services/*" negate="true"/>
+ <filename name="META-INF/services"/>
+ <filename name="META-INF/services/*"/>
</test-selector>
</test-jar>
</target>