Author: doogie
Date: Fri Aug 1 20:41:46 2008 New Revision: 681935 URL: http://svn.apache.org/viewvc?rev=681935&view=rev Log: Another minor optimization; no longer need to specify classpathref in all the build.xml files. Modified: ofbiz/trunk/applications/accounting/build.xml ofbiz/trunk/applications/content/build.xml ofbiz/trunk/applications/ecommerce/build.xml ofbiz/trunk/applications/humanres/build.xml ofbiz/trunk/applications/manufacturing/build.xml ofbiz/trunk/applications/marketing/build.xml ofbiz/trunk/applications/order/build.xml ofbiz/trunk/applications/party/build.xml ofbiz/trunk/applications/product/build.xml ofbiz/trunk/applications/securityext/build.xml ofbiz/trunk/applications/workeffort/build.xml ofbiz/trunk/framework/appserver/build.xml ofbiz/trunk/framework/base/build.xml ofbiz/trunk/framework/catalina/build.xml ofbiz/trunk/framework/common/build.xml ofbiz/trunk/framework/datafile/build.xml ofbiz/trunk/framework/entity/build.xml ofbiz/trunk/framework/entityext/build.xml ofbiz/trunk/framework/example/build.xml ofbiz/trunk/framework/geronimo/build.xml ofbiz/trunk/framework/guiapp/build.xml ofbiz/trunk/framework/jetty/build.xml ofbiz/trunk/framework/minilang/build.xml ofbiz/trunk/framework/security/build.xml ofbiz/trunk/framework/service/build.xml ofbiz/trunk/framework/testtools/build.xml ofbiz/trunk/framework/webapp/build.xml ofbiz/trunk/framework/webtools/build.xml ofbiz/trunk/framework/widget/build.xml ofbiz/trunk/macros.xml ofbiz/trunk/specialpurpose/assetmaint/build.xml ofbiz/trunk/specialpurpose/ebay/build.xml ofbiz/trunk/specialpurpose/googlebase/build.xml ofbiz/trunk/specialpurpose/hhfacility/build.xml ofbiz/trunk/specialpurpose/oagis/build.xml ofbiz/trunk/specialpurpose/pos/build.xml ofbiz/trunk/specialpurpose/projectmgr/build.xml ofbiz/trunk/specialpurpose/shark/build.xml ofbiz/trunk/specialpurpose/workflow/build.xml Modified: ofbiz/trunk/applications/accounting/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/build.xml (original) +++ ofbiz/trunk/applications/accounting/build.xml Fri Aug 1 20:41:46 2008 @@ -57,7 +57,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <!-- exclude the payment processor packages; comment this out to not exclude if you have libs --> <exclude name="org/ofbiz/accounting/thirdparty/verisign/**"/> <exclude name="org/ofbiz/accounting/thirdparty/cybersource/**"/> Modified: ofbiz/trunk/applications/content/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/content/build.xml (original) +++ ofbiz/trunk/applications/content/build.xml Fri Aug 1 20:41:46 2008 @@ -53,7 +53,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <exclude name="org/ofbiz/content/report/JREntityListIteratorDataSource.java"/> <exclude name="org/ofbiz/content/report/JRMapCollectionDataSource.java"/> <exclude name="org/ofbiz/content/openoffice/*.java"/> Modified: ofbiz/trunk/applications/ecommerce/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/ecommerce/build.xml (original) +++ ofbiz/trunk/applications/ecommerce/build.xml Fri Aug 1 20:41:46 2008 @@ -53,7 +53,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/applications/humanres/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/build.xml (original) +++ ofbiz/trunk/applications/humanres/build.xml Fri Aug 1 20:41:46 2008 @@ -48,7 +48,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/applications/manufacturing/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/build.xml (original) +++ ofbiz/trunk/applications/manufacturing/build.xml Fri Aug 1 20:41:46 2008 @@ -53,7 +53,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/applications/marketing/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/marketing/build.xml (original) +++ ofbiz/trunk/applications/marketing/build.xml Fri Aug 1 20:41:46 2008 @@ -53,7 +53,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/applications/order/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/order/build.xml (original) +++ ofbiz/trunk/applications/order/build.xml Fri Aug 1 20:41:46 2008 @@ -56,7 +56,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <!-- exclude the payment processor packages; comment if you have libs --> <exclude name="org/ofbiz/order/thirdparty/taxware/**"/> </javac15> Modified: ofbiz/trunk/applications/party/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/party/build.xml (original) +++ ofbiz/trunk/applications/party/build.xml Fri Aug 1 20:41:46 2008 @@ -49,7 +49,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/applications/product/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/product/build.xml (original) +++ ofbiz/trunk/applications/product/build.xml Fri Aug 1 20:41:46 2008 @@ -64,7 +64,7 @@ </not> </condition> - <javac15 classpathref="local.class.path"> + <javac15> <exclude name="${noapplet}"/> </javac15> <!-- also put the DTDs in the jar file... --> Modified: ofbiz/trunk/applications/securityext/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/securityext/build.xml (original) +++ ofbiz/trunk/applications/securityext/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <!-- exclude the Truition; comment if you have libs --> <exclude name="org/ofbiz/securityext/thirdparty/truition/**"/> </javac15> Modified: ofbiz/trunk/applications/workeffort/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/build.xml (original) +++ ofbiz/trunk/applications/workeffort/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs, etc in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/appserver/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/appserver/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/appserver/build.xml (original) +++ ofbiz/trunk/framework/appserver/build.xml Fri Aug 1 20:41:46 2008 @@ -41,7 +41,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/base/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/base/build.xml (original) +++ ofbiz/trunk/framework/base/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <target name="classes" depends="prepare"> <!-- compile start --> - <javac15 destdir="${build.dir}/classes/start" classpathref="local.class.path" srcdir="${src.dir}/start"/> + <javac15 destdir="${build.dir}/classes/start" srcdir="${src.dir}/start"/> <copy todir="${build.dir}/classes/start"> <fileset dir="${src.dir}/start" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/framework/catalina/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/catalina/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/catalina/build.xml (original) +++ ofbiz/trunk/framework/catalina/build.xml Fri Aug 1 20:41:46 2008 @@ -44,7 +44,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/common/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/common/build.xml (original) +++ ofbiz/trunk/framework/common/build.xml Fri Aug 1 20:41:46 2008 @@ -47,7 +47,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/datafile/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/datafile/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/datafile/build.xml (original) +++ ofbiz/trunk/framework/datafile/build.xml Fri Aug 1 20:41:46 2008 @@ -46,7 +46,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/entity/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/entity/build.xml (original) +++ ofbiz/trunk/framework/entity/build.xml Fri Aug 1 20:41:46 2008 @@ -44,7 +44,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <exclude name="org/ofbiz/entity/connection/XaPoolConnectionFactory.java"/> <exclude name="org/ofbiz/entity/connection/TyrexConnectionFactory.java"/> </javac15> Modified: ofbiz/trunk/framework/entityext/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/entityext/build.xml (original) +++ ofbiz/trunk/framework/entityext/build.xml Fri Aug 1 20:41:46 2008 @@ -45,7 +45,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/example/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/example/build.xml (original) +++ ofbiz/trunk/framework/example/build.xml Fri Aug 1 20:41:46 2008 @@ -54,7 +54,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/geronimo/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/geronimo/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/geronimo/build.xml (original) +++ ofbiz/trunk/framework/geronimo/build.xml Fri Aug 1 20:41:46 2008 @@ -43,7 +43,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/guiapp/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/guiapp/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/guiapp/build.xml (original) +++ ofbiz/trunk/framework/guiapp/build.xml Fri Aug 1 20:41:46 2008 @@ -53,7 +53,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/jetty/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/jetty/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/jetty/build.xml (original) +++ ofbiz/trunk/framework/jetty/build.xml Fri Aug 1 20:41:46 2008 @@ -43,7 +43,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/minilang/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/minilang/build.xml (original) +++ ofbiz/trunk/framework/minilang/build.xml Fri Aug 1 20:41:46 2008 @@ -46,7 +46,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/security/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/security/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/security/build.xml (original) +++ ofbiz/trunk/framework/security/build.xml Fri Aug 1 20:41:46 2008 @@ -43,7 +43,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/service/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/service/build.xml (original) +++ ofbiz/trunk/framework/service/build.xml Fri Aug 1 20:41:46 2008 @@ -46,7 +46,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/testtools/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/testtools/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/testtools/build.xml (original) +++ ofbiz/trunk/framework/testtools/build.xml Fri Aug 1 20:41:46 2008 @@ -46,7 +46,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/framework/webapp/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/webapp/build.xml (original) +++ ofbiz/trunk/framework/webapp/build.xml Fri Aug 1 20:41:46 2008 @@ -50,7 +50,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <!-- JasperReports dependent files --> <exclude name="org/ofbiz/webapp/view/JasperReportsPdfViewHandler.java"/> <exclude name="org/ofbiz/webapp/view/JasperReportsXmlViewHandler.java"/> Modified: ofbiz/trunk/framework/webtools/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/webtools/build.xml (original) +++ ofbiz/trunk/framework/webtools/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <!-- also put the DTDs in the jar file... --> <copy todir="${build.dir}/classes"> <!--<fileset dir="${dtd.dir}" includes="*.dtd"/>--> Modified: ofbiz/trunk/framework/widget/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/build.xml (original) +++ ofbiz/trunk/framework/widget/build.xml Fri Aug 1 20:41:46 2008 @@ -51,7 +51,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> Modified: ofbiz/trunk/macros.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/macros.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/macros.xml (original) +++ ofbiz/trunk/macros.xml Fri Aug 1 20:41:46 2008 @@ -30,8 +30,10 @@ </sequential> </macrodef> + <path id="local.class.path"/> + <presetdef name="default-javac"> - <javac debug="on" deprecation="on" destdir="${build.dir}/classes" srcdir="${src.dir}"/> + <javac debug="on" deprecation="on" destdir="${build.dir}/classes" srcdir="${src.dir}" classpathref="local.class.path"/> </presetdef> <presetdef name="javac14"> Modified: ofbiz/trunk/specialpurpose/assetmaint/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/assetmaint/build.xml (original) +++ ofbiz/trunk/specialpurpose/assetmaint/build.xml Fri Aug 1 20:41:46 2008 @@ -50,7 +50,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/ebay/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebay/build.xml (original) +++ ofbiz/trunk/specialpurpose/ebay/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/googlebase/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlebase/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/googlebase/build.xml (original) +++ ofbiz/trunk/specialpurpose/googlebase/build.xml Fri Aug 1 20:41:46 2008 @@ -50,7 +50,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/hhfacility/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/hhfacility/build.xml (original) +++ ofbiz/trunk/specialpurpose/hhfacility/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/oagis/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/build.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/build.xml Fri Aug 1 20:41:46 2008 @@ -54,7 +54,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/pos/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/pos/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/pos/build.xml (original) +++ ofbiz/trunk/specialpurpose/pos/build.xml Fri Aug 1 20:41:46 2008 @@ -54,7 +54,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/projectmgr/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/build.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/build.xml Fri Aug 1 20:41:46 2008 @@ -52,7 +52,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> </copy> Modified: ofbiz/trunk/specialpurpose/shark/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/shark/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/shark/build.xml (original) +++ ofbiz/trunk/specialpurpose/shark/build.xml Fri Aug 1 20:41:46 2008 @@ -49,7 +49,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"> + <javac15> <src path="${src.dir}"/> <exclude name="org/ofbiz/shark/SharkGuiContainer.java"/> </javac15> Modified: ofbiz/trunk/specialpurpose/workflow/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/workflow/build.xml?rev=681935&r1=681934&r2=681935&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/workflow/build.xml (original) +++ ofbiz/trunk/specialpurpose/workflow/build.xml Fri Aug 1 20:41:46 2008 @@ -45,7 +45,7 @@ <!-- ================================================================== --> <target name="classes" depends="prepare"> - <javac15 classpathref="local.class.path"/> + <javac15/> <copy todir="${build.dir}/classes"> <!-- don't put the DTDs in the jar file... --> <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> |
Free forum by Nabble | Edit this page |