You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/09/16 19:29:52 UTC

svn commit: r815902 - /incubator/uima/uimaj/trunk/uimaj/pom.xml

Author: schor
Date: Wed Sep 16 17:29:51 2009
New Revision: 815902

URL: http://svn.apache.org/viewvc?rev=815902&view=rev
Log:
UIMA-1575 change test for adding LIC/NOT/DIS to sources/resources/META-INF to test if the packaging target is "jar".  Needed for Eclipse Feature Jars (which have no Java sources).

Modified:
    incubator/uima/uimaj/trunk/uimaj/pom.xml

Modified: incubator/uima/uimaj/trunk/uimaj/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj/pom.xml?rev=815902&r1=815901&r2=815902&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj/pom.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj/pom.xml Wed Sep 16 17:29:51 2009
@@ -284,7 +284,10 @@
                 <condition property="sourceForLicenseNoticeDisclaimer"
                            value="skip"> <!-- value must be a non-existant file name 
                                       blank doesn't work (copies everything)-->
-                  <not> <available file="src/main/java"/> </not>
+                  <!--not> <available file="src/main/java"/> </not-->
+                  <not>
+                    <equals arg1="jar" arg2="${project.packaging}"></equals>
+                  </not>
                 </condition>
                   
                 <!-- only sets property if not set by previous above statement -->