Author: hindessm
Date: Fri Sep 22 03:04:01 2006
New Revision: 448882
URL: http://svn.apache.org/viewvc?view=rev&rev=448882
Log:
Applied patch from "[#HARMONY-1510] [classlib][build] build target names are
inconsistent".
Modified:
incubator/harmony/enhanced/classlib/trunk/build.xml
incubator/harmony/enhanced/classlib/trunk/make/build-native.xml
incubator/harmony/enhanced/classlib/trunk/make/build-test.xml
incubator/harmony/enhanced/classlib/trunk/modules/accessibility/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/annotation/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/applet/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/archive/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/auth/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/awt/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/beans/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/concurrent/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/crypto/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/instrument/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/jndi/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/logging/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/math/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/misc/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/nio_char/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/regex/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/rmi/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/security/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/sound/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/suncompat/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/swing/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/text/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/tools/build.xml
incubator/harmony/enhanced/classlib/trunk/modules/x-net/build.xml
Modified: incubator/harmony/enhanced/classlib/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/build.xml Fri Sep 22 03:04:01 2006
@@ -81,7 +81,7 @@
<target name="build" depends="build-java,build-native">
<ant antfile="make/build-test.xml" inheritall="false"
- target="support.jar"/>
+ target="support-jar"/>
</target>
Modified: incubator/harmony/enhanced/classlib/trunk/make/build-native.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build-native.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-native.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-native.xml Fri Sep 22 03:04:01 2006
@@ -67,17 +67,17 @@
<!-- These module targets take care of building and copying
their shared libs -->
- <ant dir="modules/luni" antfile="build.xml" target="build.native.core" />
- <ant dir="modules/archive" antfile="build.xml" target="build.native" />
- <ant dir="modules/auth" antfile="build.xml" target="build.native" />
- <ant dir="modules/text" antfile="build.xml" target="build.native" />
- <ant dir="modules/prefs" antfile="build.xml" target="build.native" />
- <ant dir="modules/luni" antfile="build.xml" target="build.native.secondary" />
- <ant dir="modules/nio" antfile="build.xml" target="build.native" />
- <ant dir="modules/misc" antfile="build.xml" target="build.native" />
- <ant dir="modules/awt" antfile="build.xml" target="build.native" />
- <ant dir="modules/security" antfile="build.xml" target="build.native" />
- <ant dir="modules/instrument" antfile="build.xml" target="build.native" />
+ <ant dir="modules/luni" antfile="build.xml" target="build-native-core" />
+ <ant dir="modules/archive" antfile="build.xml" target="build-native" />
+ <ant dir="modules/auth" antfile="build.xml" target="build-native" />
+ <ant dir="modules/text" antfile="build.xml" target="build-native" />
+ <ant dir="modules/prefs" antfile="build.xml" target="build-native" />
+ <ant dir="modules/luni" antfile="build.xml" target="build-native-secondary" />
+ <ant dir="modules/nio" antfile="build.xml" target="build-native" />
+ <ant dir="modules/misc" antfile="build.xml" target="build-native" />
+ <ant dir="modules/awt" antfile="build.xml" target="build-native" />
+ <ant dir="modules/security" antfile="build.xml" target="build-native" />
+ <ant dir="modules/instrument" antfile="build.xml" target="build-native" />
</target>
@@ -88,16 +88,16 @@
depends="copy-makefile-includes,-make-clean,clean-makefile-includes" />
<target name="-make-clean">
- <ant dir="modules/auth" antfile="build.xml" target="clean.native" />
- <ant dir="modules/archive" antfile="build.xml" target="clean.native" />
- <ant dir="modules/text" antfile="build.xml" target="clean.native" />
- <ant dir="modules/prefs" antfile="build.xml" target="clean.native" />
- <ant dir="modules/luni" antfile="build.xml" target="clean.native" />
- <ant dir="modules/nio" antfile="build.xml" target="clean.native" />
- <ant dir="modules/misc" antfile="build.xml" target="clean.native" />
- <ant dir="modules/awt" antfile="build.xml" target="clean.native" />
- <ant dir="modules/security" antfile="build.xml" target="clean.native" />
- <ant dir="modules/instrument" antfile="build.xml" target="clean.native" />
+ <ant dir="modules/auth" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/archive" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/text" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/prefs" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/luni" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/nio" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/misc" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/awt" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/security" antfile="build.xml" target="clean-native" />
+ <ant dir="modules/instrument" antfile="build.xml" target="clean-native" />
<delete dir="${native.lib.target}" />
</target>
@@ -160,12 +160,12 @@
target: copy-includes
================================= -->
<target name="copy-includes" >
- <!-- Call copy.native.includes targets to copy across
+ <!-- Call copy-native-includes targets to copy across
global includes to deploy/includes/harmony -->
<ant dir="modules/archive" antfile="build.xml"
- target="copy.native.includes" />
+ target="copy-native-includes" />
<ant dir="modules/luni" antfile="build.xml"
- target="copy.native.includes" />
+ target="copy-native-includes" />
</target>
<!-- =================================
@@ -176,9 +176,9 @@
includes under deploy/includes/harmony -->
<ant dir="modules/archive" antfile="build.xml"
- target="clean.native.includes" />
+ target="clean-native-includes" />
<ant dir="modules/luni" antfile="build.xml"
- target="clean.native.includes" />
+ target="clean-native-includes" />
<!-- delete the deploy/include and deploy/jdk/include directories -->
<delete dir="${hy.hdk}/include" />
Modified: incubator/harmony/enhanced/classlib/trunk/make/build-test.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build-test.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-test.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-test.xml Fri Sep 22 03:04:01 2006
@@ -46,7 +46,7 @@
<delete file="${hy.hdk}/build/test/support.jar" />
</target>
- <target name="test-modules" depends="support.jar">
+ <target name="test-modules" depends="support-jar">
<call-modules target="test" />
</target>
@@ -63,7 +63,7 @@
<echo message="The test report is in ${display-location}"/>
</target>
- <target name="support.jar" depends="compile-support">
+ <target name="support-jar" depends="compile-support">
<mkdir dir="${hy.hdk}/build/test" />
<jar destfile="${hy.hdk}/build/test/support.jar"
manifest="support/META-INF/MANIFEST.MF">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/accessibility/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/accessibility/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/accessibility/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/accessibility/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property file="../../make/depends.properties" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -44,7 +44,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling ACCESSIBILITY classes" />
<mkdir dir="${hy.build}" />
@@ -66,7 +66,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.accessibility.src.main.java}">
@@ -75,7 +75,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.accessibility.packaging.jarname}.jar"
manifest="${hy.accessibility}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -85,7 +85,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling ACCESSIBILITY tests" />
<mkdir dir="${hy.accessibility.bin.test}" />
@@ -109,7 +109,7 @@
</javac>
</target>
- <target name="run.tests" if="with.awt.swing">
+ <target name="run-tests" if="with.awt.swing">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/annotation/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/annotation/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/annotation/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/annotation/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling ANNOTATION classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.annotation.src.main.java}">
@@ -74,7 +74,7 @@
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.annotation.packaging.jarname}.jar"
manifest="${hy.annotation}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -84,7 +84,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling ANNOTATION tests" />
<mkdir dir="${hy.annotation.bin.test}" />
@@ -108,7 +108,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/applet/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/applet/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/applet/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/applet/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling APPLET classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.applet.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/applet.jar"
manifest="${hy.applet}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling APPLET tests" />
<mkdir dir="${hy.applet.bin.test}" />
@@ -106,7 +106,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/archive/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/archive/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/archive/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/archive/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property name="zlib.zip" location="${depends.oss}/zlib_1.2.3.zip" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="copy.native.includes" depends="overlay-oss">
+ <target name="copy-native-includes" depends="overlay-oss">
<copy todir="${hy.hdk}/include" overwrite="yes">
<fileset dir="${hy.archive.src.main.native}/include/shared">
<include name="zipsup.h" />
@@ -58,7 +58,7 @@
</target>
<!-- Build native code -->
- <target name="build.native" >
+ <target name="build-native" >
<make dir="${hy.archive.src.main.native}/zip/${hy.os}" />
<make dir="${hy.archive.src.main.native}/zlib/${hy.os}" />
@@ -77,7 +77,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.archive.src.main.native}/zip/${hy.os}" target="clean" />
<make dir="${hy.archive.src.main.native}/zlib/${hy.os}"
target="clean" />
@@ -85,17 +85,17 @@
target="clean" />
</target>
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
<fileset refid="classes" />
<fileset dir="${hy.archive.bin.test}" />
</delete>
- <antcall target="clean.native.includes" />
+ <antcall target="clean-native-includes" />
</target>
- <target name="clean.native.includes">
+ <target name="clean-native-includes">
<delete failonerror="false">
<fileset dir="${hy.hdk}/include">
<include name="zipsup.h" />
@@ -103,7 +103,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling ARCHIVE classes" />
<mkdir dir="${hy.build}" />
@@ -125,7 +125,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.archive.src.main.java}">
@@ -134,7 +134,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/archive.jar"
manifest="${hy.archive}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -144,7 +144,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling ARCHIVE tests" />
<mkdir dir="${hy.archive.bin.test}" />
@@ -167,7 +167,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -217,7 +217,7 @@
append="true">archive${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.archive.bin.test}" />
<copy todir="${hy.archive.bin.test}" includeemptydirs="false">
<fileset dir="${hy.archive.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/auth/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/auth/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/auth/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/auth/build.xml Fri Sep 22 03:04:01 2006
@@ -40,12 +40,12 @@
<property name="hy.auth.src.test.java.platform"
value="${hy.auth.src.test.java}/../${hy.os}" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<!-- Build native code -->
- <target name="build.native" >
+ <target name="build-native" >
<make dir="${hy.auth.src.main.native}/auth/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -57,7 +57,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.auth.src.main.native}/auth/${hy.os}" target="clean" />
</target>
@@ -68,7 +68,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling AUTH classes" />
<mkdir dir="${hy.build}" />
@@ -94,7 +94,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.auth.src.main.java}">
@@ -103,7 +103,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.auth.packaging.jarname}.jar"
manifest="${hy.auth}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -113,7 +113,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling AUTH tests" />
<mkdir dir="${hy.auth.bin.test}" />
@@ -145,7 +145,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/awt/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/awt/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/awt/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/awt/build.xml Fri Sep 22 03:04:01 2006
@@ -39,9 +39,9 @@
<property name="hy.awt.src.test.api.java.platform"
value="${hy.awt.src.test.api}/java/${hy.os}" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -50,7 +50,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling AWT classes" />
<mkdir dir="${hy.build}" />
@@ -76,7 +76,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.awt.src.main.java}">
@@ -85,7 +85,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/awt.jar"
manifest="${hy.awt}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -95,8 +95,8 @@
</jar>
</target>
- <target name="build.native"
- depends="-build.native.linux,-build.native.windows"
+ <target name="build-native"
+ depends="-build-native-linux,-build-native-windows"
if="with.awt.swing">
<make dir="${hy.awt.src.main.native}/lcmm/${hy.os}" />
@@ -125,7 +125,7 @@
</target>
- <target name="-build.native.linux" if="is.linux">
+ <target name="-build-native-linux" if="is.linux">
<make dir="${hy.awt.src.main.native}/x11wrapper/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
<copy todir="${hy.jdk}/jre/bin" overwrite="yes">
@@ -143,7 +143,7 @@
</copy>
</target>
- <target name="-build.native.windows" if="is.windows">
+ <target name="-build-native-windows" if="is.windows">
<make dir="${hy.awt.src.main.native}/win32wrapper/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
<copy todir="${hy.jdk}/jre/bin" overwrite="yes">
@@ -161,8 +161,8 @@
</copy>
</target>
- <target name="clean.native"
- depends="-clean.native.linux,-clean.native.windows">
+ <target name="clean-native"
+ depends="-clean-native-linux,-clean-native-windows">
<make dir="${hy.awt.src.main.native}/lcmm/${hy.os}"
target="clean"/>
<make dir="${hy.awt.src.main.native}/jpegdecoder/${hy.os}"
@@ -171,21 +171,21 @@
target="clean"/>
</target>
- <target name="-clean.native.linux" if="is.linux">
+ <target name="-clean-native-linux" if="is.linux">
<make dir="${hy.awt.src.main.native}/x11wrapper/${hy.os}"
target="clean"/>
<make dir="${hy.awt.src.main.native}/linuxfont/${hy.os}"
target="clean"/>
</target>
- <target name="-clean.native.windows" if="is.windows">
+ <target name="-clean-native-windows" if="is.windows">
<make dir="${hy.awt.src.main.native}/win32wrapper/${hy.os}"
target="clean"/>
<make dir="${hy.awt.src.main.native}/winfont/${hy.os}"
target="clean"/>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling AWT tests" />
<mkdir dir="${hy.awt.bin.test}" />
@@ -232,7 +232,7 @@
</copy>
</target>
- <target name="run.tests" if="with.awt.swing">
+ <target name="run-tests" if="with.awt.swing">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/beans/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/beans/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/beans/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/beans/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property file="../../make/depends.properties" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -44,7 +44,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling BEANS classes" />
<mkdir dir="${hy.build}" />
@@ -66,7 +66,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.beans.src.main.java}">
@@ -75,7 +75,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/beans.jar"
manifest="${hy.beans}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -85,7 +85,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources" >
+ <target name="compile-tests" depends="copy-test-resources" >
<mkdir dir="${hy.beans.bin.internal}" />
<mkdir dir="${hy.beans.bin.test}" />
<mkdir dir="${hy.beans.bin.test.support}" />
@@ -149,7 +149,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -259,7 +259,7 @@
append="true">beans${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.beans.bin.test}" />
<copy todir="${hy.beans.bin.test}" includeemptydirs="false">
<fileset dir="${hy.beans.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/concurrent/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/concurrent/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/concurrent/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/concurrent/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, build.jar" />
+ <target name="build" depends="compile-java, build-jar" />
- <target name="test" ><!-- depends="build, compile.tests, run.tests" --></target>
+ <target name="test" ><!-- depends="build, compile-tests, run-tests" --></target>
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling CONCURRENT classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.concurrent.packaging.jarname}.jar"
manifest="${hy.concurrent}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -74,7 +74,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling CONCURRENT tests" />
<mkdir dir="${hy.concurrent.bin.test}" />
@@ -99,7 +99,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/crypto/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/crypto/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/crypto/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/crypto/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property file="../../make/depends.properties" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -44,7 +44,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling CRYPTO classes" />
<mkdir dir="${hy.build}" />
@@ -66,7 +66,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.crypto.src.main.java}">
@@ -75,7 +75,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.crypto.packaging.jarname}.jar"
manifest="${hy.crypto}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -85,7 +85,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<compile-tests description="test support files" destdir="../../build/tests">
<javac-elements>
@@ -130,9 +130,9 @@
</compile-tests>
</target>
- <target name="run.tests" depends="run.tests.api, run.tests.impl" />
+ <target name="run-tests" depends="run-tests-api, run-tests-impl" />
- <target name="run.tests.api">
+ <target name="run-tests-api">
<run-tests description="api tests">
<junit-elements>
@@ -170,7 +170,7 @@
<antcall target="touch-errors-file" />
</target>
- <target name="run.tests.impl" unless="test.noimpl">
+ <target name="run-tests-impl" unless="test.noimpl">
<run-tests description="impl tests">
<junit-elements>
<classpath>
Modified: incubator/harmony/enhanced/classlib/trunk/modules/instrument/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/instrument/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/instrument/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/instrument/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property name="iculib.zip" location="${depends.oss}/icu4c-3.4-harmony.zip" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="overlay-oss">
<mkdir dir="${hy.instrument.src.main.native}/icu4c/unicode" />
@@ -48,7 +48,7 @@
</target>
<!-- Build native code -->
- <target name="build.native" >
+ <target name="build-native" >
<make dir="${hy.instrument.src.main.native}/instrument/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -60,7 +60,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.instrument.src.main.native}/instrument/${hy.os}" target="clean" />
</target>
@@ -71,7 +71,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling INSTRUMENT classes" />
<mkdir dir="${hy.build}" />
@@ -93,7 +93,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.instrument.src.main.java}">
@@ -102,7 +102,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/instrument.jar"
manifest="${hy.instrument}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -112,7 +112,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling INSTRUMENT tests" />
<mkdir dir="${hy.instrument.bin.test}" />
@@ -135,7 +135,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -185,7 +185,7 @@
append="true">instrument${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.instrument.bin.test}" />
<copy todir="${hy.instrument.bin.test}" includeemptydirs="false">
<fileset dir="${hy.instrument.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/jndi/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/jndi/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/jndi/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/jndi/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling JNDI classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.jndi.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/jndi.jar"
manifest="${hy.jndi}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources" >
+ <target name="compile-tests" depends="copy-test-resources" >
<echo message="Compiling JNDI tests" />
<mkdir dir="${hy.jndi.bin.test}" />
@@ -106,7 +106,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -185,7 +185,7 @@
append="true">jndi${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.jndi.bin.test}" />
<copy todir="${hy.jndi.bin.test}" includeemptydirs="false">
<fileset dir="${hy.jndi.src.test.resources}">
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=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, build.jar" />
+ <target name="build" depends="compile-java, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling LANG-MANAGEMENT classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.lang-management.packaging.jarname}.jar"
manifest="${hy.lang-management}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -74,7 +74,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling LANG-MANAGEMENT tests" />
<mkdir dir="${hy.lang-management.bin.test}" />
@@ -98,7 +98,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/logging/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/logging/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/logging/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/logging/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.jar.resources, build.jar, copy.resources" />
+ <target name="build" depends="compile-java, copy-jar-resources, build-jar, copy-resources" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling LOGGING classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/logging.jar"
manifest="${hy.logging}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -74,7 +74,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources" >
+ <target name="compile-tests" depends="copy-test-resources" >
<echo message="Compiling LOGGING tests" />
<mkdir dir="${hy.logging.bin.internal}" />
@@ -117,7 +117,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -182,7 +182,7 @@
append="true">logging${line.separator}</echo>
</target>
- <target name="copy.jar.resources">
+ <target name="copy-jar-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.logging.src.main.java}">
@@ -192,7 +192,7 @@
</copy>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<copy todir="${hy.jdk}/jre/lib" overwrite="yes" flatten="yes">
<fileset dir="${hy.logging.src.main.java}">
<include name="**/logging.properties" />
@@ -200,7 +200,7 @@
</copy>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.logging.bin.test}" />
<copy todir="${hy.logging.bin.test}" includeemptydirs="false">
<fileset dir="${hy.logging.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Fri Sep 22 03:04:01 2006
@@ -34,9 +34,9 @@
<property file="../../make/depends.properties" />
<property name="fdlibm.zip" location="${depends.oss}/fdlibm_5.2.zip" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="copy.native.includes">
+ <target name="copy-native-includes">
<copy todir="${hy.hdk}/include" overwrite="yes">
<fileset dir="${hy.luni.src.main.native}/include/shared">
<include name="vmi.h" />
@@ -65,11 +65,11 @@
</fileset>
</copy>
- <antcall target="copy.native.includes.windows" />
- <antcall target="copy.native.includes.linux" />
+ <antcall target="copy-native-includes-windows" />
+ <antcall target="copy-native-includes-linux" />
</target>
- <target name="copy.native.includes.windows" if="is.windows">
+ <target name="copy-native-includes-windows" if="is.windows">
<copy todir="${hy.hdk}/include" overwrite="yes">
<fileset dir="${hy.luni.src.main.native}/include/windows">
<include name="hymutex.h" />
@@ -80,7 +80,7 @@
</copy>
</target>
- <target name="copy.native.includes.linux" if="is.linux">
+ <target name="copy-native-includes-linux" if="is.linux">
<copy todir="${hy.hdk}/include" overwrite="yes">
<fileset dir="${hy.luni.src.main.native}/include/linux">
<include name="hymutex.h" />
@@ -92,11 +92,11 @@
</target>
<!-- Build native code -->
- <target name="build.native"
- depends="build.native.core, build.native.secondary" />
+ <target name="build-native"
+ depends="build-native-core, build-native-secondary" />
<!-- Build the core luni native components -->
- <target name="build.native.core" >
+ <target name="build-native-core" >
<!-- Build sig dll -->
<make dir="${hy.luni.src.main.native}/sig/${hy.os}" />
@@ -151,7 +151,7 @@
</target>
<!-- Build secondary native luni components -->
- <target name="build.native.secondary" >
+ <target name="build-native-secondary" >
<!-- Build luni dll -->
<make dir="${hy.luni.src.main.native}/luni/${hy.os}" />
<copy todir="${hy.jdk}/jre/bin" overwrite="yes">
@@ -191,7 +191,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.luni.src.main.native}/sig/${hy.os}" target="clean" />
<make dir="${hy.luni.src.main.native}/common/${hy.os}" target="clean" />
<make dir="${hy.luni.src.main.native}/pool/${hy.os}" target="clean" />
@@ -205,17 +205,17 @@
target="clean" />
</target>
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
<fileset refid="classes" />
<fileset dir="${hy.luni.bin.test}" />
</delete>
- <antcall target="clean.native.includes" />
+ <antcall target="clean-native-includes" />
</target>
- <target name="clean.native.includes">
+ <target name="clean-native-includes">
<delete failonerror="false">
<fileset dir="${hy.hdk}/include">
<include name="vmi.h" />
@@ -248,7 +248,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling LUNI classes" />
<javac sourcepath=""
@@ -268,7 +268,7 @@
</javac>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/luni.jar"
manifest="${hy.luni}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -278,7 +278,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<compile-tests description="JUnit Tests" destdir="${hy.luni.bin.test}">
<javac-elements>
<src>
@@ -289,7 +289,7 @@
</compile-tests>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<run-tests description="JUnit Tests">
<junit-elements>
<classpath>
@@ -339,7 +339,7 @@
append="true">luni${line.separator}</echo>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.luni.src.main.java}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/math/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/math/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/math/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/math/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling MATH classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.math.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/math.jar"
manifest="${hy.math}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling MATH tests" />
<mkdir dir="${hy.math.bin.test}" />
@@ -106,7 +106,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/misc/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/misc/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/misc/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/misc/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling MISC classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.misc.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.misc.packaging.jarname}.jar"
manifest="${hy.misc}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="build.native" >
+ <target name="build-native" >
<make dir="${hy.misc.src.main.native}/accessors/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -95,12 +95,12 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.misc.src.main.native}/accessors/${hy.os}"
target="clean" />
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling MISC tests" />
<mkdir dir="${hy.misc.bin.test}" />
@@ -123,7 +123,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml Fri Sep 22 03:04:01 2006
@@ -34,12 +34,12 @@
<property name="hy.nio.src.test.java.platform"
value="${hy.nio.src.test.java}/../${hy.os}" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<!-- Build natives.-->
- <target name="build.native">
+ <target name="build-native">
<make dir="${hy.nio.src.main.native}/nio/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -58,13 +58,13 @@
</target>
<!-- Clean natives. -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.nio.src.main.native}/nio/${hy.os}"
target="clean" />
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling NIO classes" />
<mkdir dir="${hy.build}" />
@@ -86,7 +86,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.nio.src.main.java}">
@@ -95,7 +95,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/nio.jar"
manifest="${hy.nio}/META-INF/MANIFEST.MF">
@@ -106,7 +106,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling NIO tests" />
<mkdir dir="${hy.nio.bin.test}" />
@@ -133,7 +133,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
<property name="test.jre.home" value="${hy.jdk}/jre" />
@@ -179,7 +179,7 @@
<echo file="${hy.tests.reports}/test.errors" append="true">nio${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.nio.bin.test}" />
<copy todir="${hy.nio.bin.test}" includeemptydirs="false">
<fileset dir="${hy.nio.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio_char/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio_char/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/nio_char/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/nio_char/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling NIO_CHAR classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.nio_char.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.nio_char.packaging.jarname}.jar"
manifest="${hy.nio_char}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling NIO_CHAR tests" />
<mkdir dir="${hy.nio_char.bin.test}" />
@@ -107,7 +107,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -171,7 +171,7 @@
append="true">nio_char${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.nio_char.bin.test}" />
<copy todir="${hy.nio_char.bin.test}" includeemptydirs="false">
<fileset dir="${hy.nio_char.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml Fri Sep 22 03:04:01 2006
@@ -31,13 +31,13 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<!-- Build natives. Currently there are only windows natives for
prefs, so we check if we are on a windows platform -->
- <target name="build.native" if="is.windows">
+ <target name="build-native" if="is.windows">
<make dir="${hy.prefs.src.main.native}/prefs/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -57,12 +57,12 @@
<!-- Clean natives. Currently there are only windows natives for
prefs, so we check if we are on a windows platform -->
- <target name="clean.native" if="is.windows">
+ <target name="clean-native" if="is.windows">
<make dir="${hy.prefs.src.main.native}/prefs/${hy.os}" target="clean" />
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling PREFS classes" />
<mkdir dir="${hy.build}" />
@@ -84,7 +84,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.prefs.src.main.java}">
@@ -93,7 +93,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/prefs.jar"
manifest="${hy.prefs}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -103,7 +103,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling PREFS tests" />
<mkdir dir="${hy.prefs.bin.test}" />
@@ -127,7 +127,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -178,7 +178,7 @@
append="true">prefs${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.prefs.bin.test}" />
<copy todir="${hy.prefs.bin.test}" includeemptydirs="false">
<fileset dir="${hy.prefs.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/regex/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/regex/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/regex/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/regex/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling REGEX classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.regex.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/regex.jar"
manifest="${hy.regex}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling REGEX tests" />
<mkdir dir="${hy.regex.bin.test}" />
@@ -106,7 +106,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/rmi/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/rmi/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/rmi/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/rmi/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property file="../../make/depends.properties" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -44,7 +44,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling RMI classes" />
<mkdir dir="${hy.build}" />
@@ -66,7 +66,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.rmi.src.main.java}">
@@ -75,7 +75,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.rmi.packaging.jarname}.jar"
manifest="${hy.rmi}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -85,7 +85,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<compile-tests description="api tests" destdir="${hy.rmi.bin.test}/api">
<javac-elements>
@@ -99,9 +99,9 @@
</target>
- <target name="run.tests" depends="run.tests.api" />
+ <target name="run-tests" depends="run-tests-api" />
- <target name="run.tests.api">
+ <target name="run-tests-api">
<run-tests description="api tests">
<junit-elements>
Modified: incubator/harmony/enhanced/classlib/trunk/modules/security/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/security/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/security/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/security/build.xml Fri Sep 22 03:04:01 2006
@@ -40,16 +40,16 @@
<property name="hy.security.src.test.java.platform"
value="${hy.security.src.test.java}/../${hy.os}" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<!-- Build native code -->
<available file="${hy.security.src.main.native}/security/${hy.os}" property="native.present" />
- <target name="build.native" if="native.present" >
+ <target name="build-native" if="native.present" >
<make dir="${hy.security.src.main.native}/security/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -61,7 +61,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native" if="native.present" >
+ <target name="clean-native" if="native.present" >
<make dir="${hy.security.src.main.native}/security/${hy.os}" target="clean" />
</target>
@@ -73,7 +73,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling SECURITY classes" />
<mkdir dir="${hy.build}" />
@@ -99,7 +99,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.security.src.main.java}">
@@ -108,7 +108,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.security.packaging.jarname}.jar"
manifest="${hy.security}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -118,7 +118,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<compile-tests description="test support files" destdir="../../build/tests">
<javac-elements>
@@ -168,9 +168,9 @@
</compile-tests>
</target>
- <target name="run.tests" depends="run.tests.api, run.tests.impl" />
+ <target name="run-tests" depends="run-tests-api, run-tests-impl" />
- <target name="run.tests.api">
+ <target name="run-tests-api">
<run-tests description="api tests">
<junit-elements>
@@ -223,7 +223,7 @@
<antcall target="touch-errors-file" />
</target>
- <target name="run.tests.impl" unless="test.noimpl">
+ <target name="run-tests-impl" unless="test.noimpl">
<run-tests description="impl tests">
<junit-elements>
<!-- Required for running the serialization unit tests -->
Modified: incubator/harmony/enhanced/classlib/trunk/modules/sound/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/sound/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/sound/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/sound/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling SOUND classes" />
<mkdir dir="${hy.build}" />
@@ -64,7 +64,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.sound.src.main.java}">
@@ -73,7 +73,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.sound.packaging.jarname}.jar"
manifest="${hy.sound}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -83,7 +83,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling SOUND tests" />
<mkdir dir="${hy.sound.bin.test}" />
@@ -107,7 +107,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
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=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/sql/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling SQL classes" />
<javac sourcepath=""
@@ -62,7 +62,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.sql.src.main.java}">
@@ -71,7 +71,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/sql.jar"
manifest="${hy.sql}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -81,7 +81,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling SQL tests" />
<mkdir dir="${hy.sql.bin.test}" />
@@ -104,7 +104,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/suncompat/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/suncompat/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/suncompat/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/suncompat/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, build.jar" />
+ <target name="build" depends="compile-java, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java" depends="copy.resources">
+ <target name="compile-java" depends="copy-resources">
<echo message="Compiling Sun Compat classes" />
<javac sourcepath=""
@@ -62,7 +62,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.suncompat.src.main.java}">
@@ -71,7 +71,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/suncompat.jar"
manifest="${hy.suncompat}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -81,7 +81,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling SUNCOMPAT tests" />
<mkdir dir="${hy.suncompat.bin.test}" />
@@ -104,7 +104,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/swing/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/swing/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/swing/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/swing/build.xml Fri Sep 22 03:04:01 2006
@@ -39,9 +39,9 @@
<property name="hy.swing.src.test.java.platform"
value="${hy.swing.src.test.java}/../${hy.os}" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, run.tests" />
+ <target name="test" depends="build, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -50,7 +50,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling SWING classes" />
<mkdir dir="${hy.build}" />
@@ -76,7 +76,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.swing.src.main.java}">
@@ -85,7 +85,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.swing.packaging.jarname}.jar"
manifest="${hy.swing}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -95,7 +95,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling SWING tests" />
<mkdir dir="${hy.swing.bin.test}" />
@@ -119,7 +119,7 @@
</javac>
</target>
- <target name="run.tests" depends="compile.tests,copy.test.resources"
+ <target name="run-tests" depends="compile-tests,copy-test-resources"
if="with.awt.swing">
<mkdir dir="${hy.tests.reports}" />
@@ -313,7 +313,7 @@
append="true">swing${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.swing.bin.test}" />
<copy todir="${hy.swing.bin.test}" includeemptydirs="false">
<fileset dir="${hy.swing.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/text/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/text/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/text/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/text/build.xml Fri Sep 22 03:04:01 2006
@@ -33,17 +33,17 @@
<property name="iculib.zip" location="${depends.oss}/icu4c-3.4-harmony.zip" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="overlay-oss">
<mkdir dir="${hy.text.src.main.native}/icu4c/unicode" />
<unzip src="${iculib.zip}" dest="${hy.text.src.main.native}/icu4c/unicode" />
<chmod dir="${hy.text.src.main.native}/icu4c/unicode" perm="ugo+r" />
- <antcall target="copy.libs" inheritall="true" />
+ <antcall target="copy-libs" inheritall="true" />
</target>
- <target name="copy.libs" if="is.x86_64">
+ <target name="copy-libs" if="is.x86_64">
<copy todir="${hy.text.src.main.native}/icu4c/unicode" overwrite="yes">
<fileset dir="${depends.libs}" includes="*${shlib.suffix}*" />
</copy>
@@ -53,7 +53,7 @@
</target>
<!-- Build native code -->
- <target name="build.native" >
+ <target name="build-native" >
<make dir="${hy.text.src.main.native}/text/${hy.os}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
@@ -65,7 +65,7 @@
</target>
<!-- Clean natives -->
- <target name="clean.native">
+ <target name="clean-native">
<make dir="${hy.text.src.main.native}/text/${hy.os}" target="clean" />
</target>
@@ -76,7 +76,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling TEXT classes" />
<mkdir dir="${hy.build}" />
@@ -98,7 +98,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.text.src.main.java}">
@@ -107,7 +107,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/text.jar"
manifest="${hy.text}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -117,7 +117,7 @@
</jar>
</target>
- <target name="compile.tests" depends="copy.test.resources">
+ <target name="compile-tests" depends="copy-test-resources">
<echo message="Compiling TEXT tests" />
<mkdir dir="${hy.text.bin.test}" />
@@ -140,7 +140,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
@@ -193,7 +193,7 @@
append="true">text${line.separator}</echo>
</target>
- <target name="copy.test.resources">
+ <target name="copy-test-resources">
<mkdir dir="${hy.text.bin.test}" />
<copy todir="${hy.text.bin.test}" includeemptydirs="false">
<fileset dir="${hy.text.src.test.resources}">
Modified: incubator/harmony/enhanced/classlib/trunk/modules/tools/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/tools/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/tools/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/tools/build.xml Fri Sep 22 03:04:01 2006
@@ -31,9 +31,9 @@
<excludesfile name="${hy.hdk}/build/patternsets/security-kernel.txt" />
</fileset>
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -42,7 +42,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling TOOLS classes" />
<mkdir dir="${hy.build}" />
@@ -68,7 +68,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.tools.src.main.java}">
@@ -77,7 +77,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<mkdir dir="${hy.jdk}/lib" />
<jar destfile="${hy.jdk}/lib/tools.jar"
@@ -89,7 +89,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<echo message="Compiling Tools tests" />
<mkdir dir="${hy.tools.bin.test}" />
@@ -115,7 +115,7 @@
</javac>
</target>
- <target name="run.tests">
+ <target name="run-tests">
<mkdir dir="${hy.tests.reports}" />
Modified: incubator/harmony/enhanced/classlib/trunk/modules/x-net/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/x-net/build.xml?view=diff&rev=448882&r1=448881&r2=448882
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/x-net/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/x-net/build.xml Fri Sep 22 03:04:01 2006
@@ -33,9 +33,9 @@
<property file="../../make/depends.properties" />
- <target name="build" depends="compile.java, copy.resources, build.jar" />
+ <target name="build" depends="compile-java, copy-resources, build-jar" />
- <target name="test" depends="build, compile.tests, run.tests" />
+ <target name="test" depends="build, compile-tests, run-tests" />
<target name="clean">
<delete failonerror="false">
@@ -44,7 +44,7 @@
</delete>
</target>
- <target name="compile.java">
+ <target name="compile-java">
<echo message="Compiling X-NET classes" />
<mkdir dir="${hy.build}" />
@@ -66,7 +66,7 @@
</javac>
</target>
- <target name="copy.resources">
+ <target name="copy-resources">
<mkdir dir="${hy.build}" />
<copy todir="${hy.build}" includeemptydirs="false">
<fileset dir="${hy.x-net.src.main.java}">
@@ -75,7 +75,7 @@
</copy>
</target>
- <target name="build.jar" depends="svn-info">
+ <target name="build-jar" depends="svn-info">
<jar destfile="${hy.jdk}/jre/lib/boot/${hy.x-net.packaging.jarname}.jar"
manifest="${hy.x-net}/META-INF/MANIFEST.MF">
<fileset refid="classes" />
@@ -85,7 +85,7 @@
</jar>
</target>
- <target name="compile.tests">
+ <target name="compile-tests">
<compile-tests description="test support files" destdir="../../build/tests">
<javac-elements>
@@ -121,9 +121,9 @@
</compile-tests>
</target>
- <target name="run.tests" depends="run.tests.api, run.tests.impl" />
+ <target name="run-tests" depends="run-tests-api, run-tests-impl" />
- <target name="run.tests.api">
+ <target name="run-tests-api">
<run-tests description="api tests">
<junit-elements>
@@ -147,7 +147,7 @@
<antcall target="touch-errors-file" />
</target>
- <target name="run.tests.impl" unless="test.noimpl">
+ <target name="run-tests-impl" unless="test.noimpl">
<run-tests description="impl tests">
<junit-elements>
<classpath>
|