You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2009/12/26 23:17:11 UTC

svn commit: r894024 - in /ofbiz/trunk: ./ applications/content/ applications/manufacturing/ applications/marketing/ applications/party/ applications/workeffort/ framework/appserver/ framework/birt/ framework/catalina/ framework/common/ framework/datafi...

Author: doogie
Date: Sat Dec 26 22:16:56 2009
New Revision: 894024

URL: http://svn.apache.org/viewvc?rev=894024&view=rev
Log:
Add a classes target to common.xml, and switch most build.xml to use it.

Modified:
    ofbiz/trunk/applications/content/build.xml
    ofbiz/trunk/applications/manufacturing/build.xml
    ofbiz/trunk/applications/marketing/build.xml
    ofbiz/trunk/applications/party/build.xml
    ofbiz/trunk/applications/workeffort/build.xml
    ofbiz/trunk/common.xml
    ofbiz/trunk/framework/appserver/build.xml
    ofbiz/trunk/framework/birt/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/resources/templates/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/webslinger/build.xml
    ofbiz/trunk/framework/webtools/build.xml
    ofbiz/trunk/framework/widget/build.xml
    ofbiz/trunk/specialpurpose/assetmaint/build.xml
    ofbiz/trunk/specialpurpose/crowd/build.xml
    ofbiz/trunk/specialpurpose/ebay/build.xml
    ofbiz/trunk/specialpurpose/ecommerce/build.xml
    ofbiz/trunk/specialpurpose/googlebase/build.xml
    ofbiz/trunk/specialpurpose/googlecheckout/build.xml
    ofbiz/trunk/specialpurpose/hhfacility/build.xml
    ofbiz/trunk/specialpurpose/ldap/build.xml
    ofbiz/trunk/specialpurpose/oagis/build.xml
    ofbiz/trunk/specialpurpose/pos/build.xml
    ofbiz/trunk/specialpurpose/projectmgr/build.xml
    ofbiz/trunk/specialpurpose/webpos/build.xml
    ofbiz/trunk/specialpurpose/workflow/build.xml

Modified: ofbiz/trunk/applications/content/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/build.xml (original)
+++ ofbiz/trunk/applications/content/build.xml Sat Dec 26 22:16:56 2009
@@ -56,14 +56,6 @@
     </patternset>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                    -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/applications/manufacturing/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/applications/manufacturing/build.xml (original)
+++ ofbiz/trunk/applications/manufacturing/build.xml Sat Dec 26 22:16:56 2009
@@ -49,14 +49,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/applications/marketing/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/applications/marketing/build.xml (original)
+++ ofbiz/trunk/applications/marketing/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/applications/party/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/build.xml (original)
+++ ofbiz/trunk/applications/party/build.xml Sat Dec 26 22:16:56 2009
@@ -45,14 +45,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/applications/workeffort/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/applications/workeffort/build.xml (original)
+++ ofbiz/trunk/applications/workeffort/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/common.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/common.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/common.xml (original)
+++ ofbiz/trunk/common.xml Sat Dec 26 22:16:56 2009
@@ -73,6 +73,14 @@
         </fileset>
     </target>
 
+    <!-- ================================================================== -->
+    <!-- Compilation of the source files                                    -->
+    <!-- ================================================================== -->
+
+    <target name="classes" depends="prepare">
+        <javac16/>
+    </target>
+
     <target name="jar" depends="classes,_src-available">
         <jar jarfile="${build.dir}/lib/${name}.jar">
             <fileset dir="${build.dir}/classes"/>

Modified: ofbiz/trunk/framework/appserver/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/appserver/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/appserver/build.xml (original)
+++ ofbiz/trunk/framework/appserver/build.xml Sat Dec 26 22:16:56 2009
@@ -38,14 +38,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/birt/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/birt/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/birt/build.xml (original)
+++ ofbiz/trunk/framework/birt/build.xml Sat Dec 26 22:16:56 2009
@@ -49,14 +49,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/catalina/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/catalina/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/catalina/build.xml (original)
+++ ofbiz/trunk/framework/catalina/build.xml Sat Dec 26 22:16:56 2009
@@ -40,14 +40,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/common/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/build.xml (original)
+++ ofbiz/trunk/framework/common/build.xml Sat Dec 26 22:16:56 2009
@@ -46,14 +46,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/datafile/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/datafile/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/datafile/build.xml (original)
+++ ofbiz/trunk/framework/datafile/build.xml Sat Dec 26 22:16:56 2009
@@ -43,14 +43,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/entity/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/build.xml (original)
+++ ofbiz/trunk/framework/entity/build.xml Sat Dec 26 22:16:56 2009
@@ -45,14 +45,6 @@
         <exclude name="org/ofbiz/entity/connection/TyrexConnectionFactory.java"/>
     </patternset>
 
-    <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
     <target name="install-PG-JDBC" description="download the JDBC driver for PostgreSQL">
         <get src="http://jdbc.postgresql.org/download/postgresql-8.4-701.jdbc4.jar"
             dest="lib/jdbc/postgresql-8.4-701.jdbc4.jar" usetimestamp="true" />

Modified: ofbiz/trunk/framework/entityext/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/build.xml (original)
+++ ofbiz/trunk/framework/entityext/build.xml Sat Dec 26 22:16:56 2009
@@ -41,14 +41,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/example/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/example/build.xml (original)
+++ ofbiz/trunk/framework/example/build.xml Sat Dec 26 22:16:56 2009
@@ -50,14 +50,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/geronimo/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/geronimo/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/geronimo/build.xml (original)
+++ ofbiz/trunk/framework/geronimo/build.xml Sat Dec 26 22:16:56 2009
@@ -39,14 +39,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/guiapp/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/guiapp/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/guiapp/build.xml (original)
+++ ofbiz/trunk/framework/guiapp/build.xml Sat Dec 26 22:16:56 2009
@@ -49,14 +49,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/jetty/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/jetty/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/jetty/build.xml (original)
+++ ofbiz/trunk/framework/jetty/build.xml Sat Dec 26 22:16:56 2009
@@ -39,14 +39,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/minilang/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/build.xml (original)
+++ ofbiz/trunk/framework/minilang/build.xml Sat Dec 26 22:16:56 2009
@@ -42,14 +42,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/resources/templates/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/resources/templates/build.xml (original)
+++ ofbiz/trunk/framework/resources/templates/build.xml Sat Dec 26 22:16:56 2009
@@ -106,14 +106,6 @@
     </target>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/security/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/security/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/security/build.xml (original)
+++ ofbiz/trunk/framework/security/build.xml Sat Dec 26 22:16:56 2009
@@ -39,14 +39,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/service/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/build.xml (original)
+++ ofbiz/trunk/framework/service/build.xml Sat Dec 26 22:16:56 2009
@@ -41,14 +41,6 @@
         <fileset dir="../security/build/lib" includes="*.jar"/>
     </path>
 
-    <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
     <target name="stubs" depends="classes">
         <rmic base="${build.dir}/classes" classname="org.ofbiz.service.rmi.RemoteDispatcherImpl">
             <classpath>

Modified: ofbiz/trunk/framework/testtools/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/testtools/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/testtools/build.xml (original)
+++ ofbiz/trunk/framework/testtools/build.xml Sat Dec 26 22:16:56 2009
@@ -55,14 +55,6 @@
         <property name="selenium.lib.dir" value="${lib.dir}"/>
     </target>
 
-    <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
     <target name="run-seleniumxml" depends="init, jar" description="Runs the selenium xml test cases">
         <java classname="org.ofbiz.testtools.seleniumxml.SeleniumXml" fork="true">
             <jvmarg value="-Dselenium.config=config/seleniumXml.properties"/>

Modified: ofbiz/trunk/framework/webapp/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/webapp/build.xml (original)
+++ ofbiz/trunk/framework/webapp/build.xml Sat Dec 26 22:16:56 2009
@@ -61,14 +61,6 @@
     </patternset>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/webslinger/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webslinger/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/webslinger/build.xml (original)
+++ ofbiz/trunk/framework/webslinger/build.xml Sat Dec 26 22:16:56 2009
@@ -46,14 +46,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/webtools/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/build.xml (original)
+++ ofbiz/trunk/framework/webtools/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/framework/widget/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/build.xml (original)
+++ ofbiz/trunk/framework/widget/build.xml Sat Dec 26 22:16:56 2009
@@ -47,14 +47,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/assetmaint/build.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/build.xml Sat Dec 26 22:16:56 2009
@@ -46,14 +46,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/crowd/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/crowd/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/crowd/build.xml (original)
+++ ofbiz/trunk/specialpurpose/crowd/build.xml Sat Dec 26 22:16:56 2009
@@ -47,14 +47,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/ebay/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/build.xml (original)
+++ ofbiz/trunk/specialpurpose/ebay/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/ecommerce/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/build.xml (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/build.xml Sat Dec 26 22:16:56 2009
@@ -49,14 +49,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/googlebase/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlebase/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/googlebase/build.xml (original)
+++ ofbiz/trunk/specialpurpose/googlebase/build.xml Sat Dec 26 22:16:56 2009
@@ -46,14 +46,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/googlecheckout/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlecheckout/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/googlecheckout/build.xml (original)
+++ ofbiz/trunk/specialpurpose/googlecheckout/build.xml Sat Dec 26 22:16:56 2009
@@ -51,14 +51,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/hhfacility/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/hhfacility/build.xml (original)
+++ ofbiz/trunk/specialpurpose/hhfacility/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/ldap/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ldap/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ldap/build.xml (original)
+++ ofbiz/trunk/specialpurpose/ldap/build.xml Sat Dec 26 22:16:56 2009
@@ -47,14 +47,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/oagis/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/oagis/build.xml (original)
+++ ofbiz/trunk/specialpurpose/oagis/build.xml Sat Dec 26 22:16:56 2009
@@ -50,14 +50,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/pos/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/pos/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/pos/build.xml (original)
+++ ofbiz/trunk/specialpurpose/pos/build.xml Sat Dec 26 22:16:56 2009
@@ -50,14 +50,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/projectmgr/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/build.xml (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/build.xml Sat Dec 26 22:16:56 2009
@@ -48,14 +48,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/webpos/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/webpos/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/webpos/build.xml (original)
+++ ofbiz/trunk/specialpurpose/webpos/build.xml Sat Dec 26 22:16:56 2009
@@ -50,14 +50,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->
 

Modified: ofbiz/trunk/specialpurpose/workflow/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/workflow/build.xml?rev=894024&r1=894023&r2=894024&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/workflow/build.xml (original)
+++ ofbiz/trunk/specialpurpose/workflow/build.xml Sat Dec 26 22:16:56 2009
@@ -41,14 +41,6 @@
     </path>
 
     <!-- ================================================================== -->
-    <!-- Compilation of the source files                                                                                                                         -->
-    <!-- ================================================================== -->
-
-    <target name="classes" depends="prepare">
-        <javac16/>
-    </target>
-
-    <!-- ================================================================== -->
     <!-- Build JavaDoc                                                      -->
     <!-- ================================================================== -->