diff -up glassfish-jaf/build.xml.orig glassfish-jaf/build.xml
--- glassfish-jaf/build.xml.orig	2007-11-23 10:57:28.000000000 -0500
+++ glassfish-jaf/build.xml	2007-11-23 10:55:20.000000000 -0500
@@ -19,19 +19,13 @@
  own identifying information: Portions Copyright [yyyy] 
  [name of copyright owner]
 -->
-<!DOCTYPE project [
-  <!ENTITY commonBuild SYSTEM "../bootstrap/ant-common.xml">
-]>
 <project name="Java Activation" default="all" basedir=".">  
     
     <property name="component.name" value="activation"/>    
 
     <!-- Do NOT reorder the following lines -->
-    <property file="../bootstrap/project.properties"/>
     <property file="./build.properties"/>
 
-    &commonBuild;
-
     <!-- all -->
     <target name="all" depends="compile, assemble"
             description="Build entire component">
@@ -52,7 +46,7 @@
         </tstamp>    
         <echo message="Building component ${component.name}"/>
         <mkdir dir="${component.classes.dir}"/>
-        <copy file="${glassfish.maven}/legal/LICENSE.txt"
+        <copy file="${basedir}/legal/LICENSE.txt"
                 toFile="${component.classes.dir}/META-INF/LICENSE.txt"/>
     </target>
 
@@ -61,8 +55,8 @@
         description="Compile com/sun/activation sources">  
      
         <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">
             <include name="javax/activation/**"/>            
             <include name="com/sun/activation/**"/>            
@@ -179,9 +173,9 @@
         </javadoc>
     </target>
 
-    <target name="push-to-maven-prepare" depends="-push-to-maven-init, jar"
+<!--    <target name="push-to-maven-prepare" depends="-push-to-maven-init, jar"
         description="creates an image for the 'push-to-maven' goal">
-        <delete dir="build/maven-repo" /><!-- clean it -->
+        <delete dir="build/maven-repo" />
         <maven-repository-importer destdir="build/maven-repo"
 		version="${release.version}">
             <artifact jar="${release.activation.jar}" pom="activation.pom"
@@ -193,5 +187,5 @@
         description="pushes jars to the java.net maven repository">
         <cvs-import src="build/maven-repo" dest="glassfish/repo" />
     </target>
-
+-->
 </project>
