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 17:13:39 UTC

svn commit: r453634 - in /incubator/harmony/enhanced/classlib/trunk/modules/sql: build.xml make/patternset.txt

Author: hindessm
Date: Fri Oct  6 08:13:39 2006
New Revision: 453634

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

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

Modified: incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml?view=diff&rev=453634&r1=453633&r2=453634
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml Fri Oct  6 08:13:39 2006
@@ -26,9 +26,14 @@
     <xmlproperty file="make/hyproperties.xml" semanticAttributes="true" />
 
     <fileset id="classes" dir="${hy.build}">
-        <includesfile name="${hy.sql}/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.sql.src.main.java}" />
+            <present targetdir="${hy.sql.src.main.java}">
+                <mapper type="regexp"
+                        from="^(.*?)(\$$[^/\\\.]*)?\.class$$"
+                        to="\1.java"/>
+            </present>
+        </or>
     </fileset>
 
     <target name="build" depends="compile-java, copy-resources, build-jar" />