<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- build.xml	2007-05-15 00:29:50.000000000 +0200
+++ build.xml-gil	2009-12-27 14:55:39.000000000 +0100
@@ -19,19 +19,13 @@
  own identifying information: Portions Copyright [yyyy] 
  [name of copyright owner]
 --&gt;
-&lt;!DOCTYPE project [
-  &lt;!ENTITY commonBuild SYSTEM "../bootstrap/ant-common.xml"&gt;
-]&gt;
 &lt;project name="Java Activation" default="all" basedir="."&gt;  
     
     &lt;property name="component.name" value="activation"/&gt;    
 
     &lt;!-- Do NOT reorder the following lines --&gt;
-    &lt;property file="../bootstrap/project.properties"/&gt;
     &lt;property file="./build.properties"/&gt;
 
-    &amp;commonBuild;
-
     &lt;!-- all --&gt;
     &lt;target name="all" depends="compile, assemble"
             description="Build entire component"&gt;
@@ -52,7 +46,7 @@
         &lt;/tstamp&gt;    
         &lt;echo message="Building component ${component.name}"/&gt;
         &lt;mkdir dir="${component.classes.dir}"/&gt;
-        &lt;copy file="${glassfish.maven}/legal/LICENSE.txt"
+        &lt;copy file="${basedir}/legal/LICENSE.txt"
                 toFile="${component.classes.dir}/META-INF/LICENSE.txt"/&gt;
     &lt;/target&gt;
 
@@ -61,8 +55,8 @@
         description="Compile com/sun/activation sources"&gt;  
      
         &lt;javac srcdir="${src.dir}" destdir="${component.classes.dir}"
-               debug="${javac.debug}" optimize="${javac.optimize}"
-               source="1.4" deprecation="${javac.deprecation}"
+               debug="on" optimize="off"
+               source="1.4" deprecation="off"
                failonerror="true" target="1.4"&gt;
             &lt;include name="javax/activation/**"/&gt;            
             &lt;include name="com/sun/activation/**"/&gt;            
@@ -179,9 +173,9 @@
         &lt;/javadoc&gt;
     &lt;/target&gt;
 
-    &lt;target name="push-to-maven-prepare" depends="-push-to-maven-init, jar"
+&lt;!--    &lt;target name="push-to-maven-prepare" depends="-push-to-maven-init, jar"
         description="creates an image for the 'push-to-maven' goal"&gt;
-        &lt;delete dir="build/maven-repo" /&gt;&lt;!-- clean it --&gt;
+        &lt;delete dir="build/maven-repo" /&gt;
         &lt;maven-repository-importer destdir="build/maven-repo"
 		version="${release.version}"&gt;
             &lt;artifact jar="${release.activation.jar}" pom="activation.pom"
@@ -193,5 +187,5 @@
         description="pushes jars to the java.net maven repository"&gt;
         &lt;cvs-import src="build/maven-repo" dest="glassfish/repo" /&gt;
     &lt;/target&gt;
-
+--&gt;
 &lt;/project&gt;
</pre></body></html>