You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2006/10/06 14:42:19 UTC

svn commit: r453585 - in /incubator/harmony/enhanced/classlib/trunk/modules/lang-management: build.xml make/patternset.txt

Author: hindessm
Date: Fri Oct  6 05:42:19 2006
New Revision: 453585

URL: http://svn.apache.org/viewvc?view=rev&rev=453585
Log:
Removing patternset

Removed:
    incubator/harmony/enhanced/classlib/trunk/modules/lang-management/make/patternset.txt
Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml

Modified: incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml?view=diff&rev=453585&r1=453584&r2=453585
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml Fri Oct  6 05:42:19 2006
@@ -26,9 +26,14 @@
     <xmlproperty file="make/hyproperties.xml" semanticAttributes="true" />
 
     <fileset id="classes" dir="${hy.build}">
-        <includesfile name="${hy.lang-management}/make/patternset.txt" />
-        <excludesfile name="${hy.hdk}/build/patternsets/luni-kernel.txt" />
-        <excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
+        <or>
+            <present targetdir="${hy.lang-management.src.main.java}" />
+            <present targetdir="${hy.lang-management.src.main.java}">
+                <mapper type="regexp"
+                        from="^(.*?)(\$$[^/\\\.]*)?\.class$$"
+                        to="\1.java"/>
+            </present>
+        </or>
     </fileset>
 
     <target name="build" depends="compile-java, build-jar" />