Fix jdiff and javadoc target

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/HADOOP-4687/core@780566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Giridharan Kesavan 2009-06-01 06:11:05 +00:00
parent 7e7fd2ce5b
commit c984f6c77e
2 changed files with 32315 additions and 10 deletions

View File

@ -176,7 +176,7 @@
<pathelement location="${build.examples}"/> <pathelement location="${build.examples}"/>
<pathelement location="${build.tools}"/> <pathelement location="${build.tools}"/>
<pathelement path="${clover.jar}"/> <pathelement path="${clover.jar}"/>
<path refid="test-classpath"/> <path refid="ivy-test.classpath"/>
<path refid="classpath"/> <path refid="classpath"/>
</path> </path>
<!-- <!--
@ -287,9 +287,6 @@
</target> </target>
<target name="compile-core-classes" depends="init, compile-rcc-compiler"> <target name="compile-core-classes" depends="init, compile-rcc-compiler">
<!-- <taskdef classname="org.apache.jasper.JspC" name="jsp-compile" >
<classpath refid="classpath"/>
</taskdef> -->
<!-- Compile Java files (excluding JSPs) checking warnings --> <!-- Compile Java files (excluding JSPs) checking warnings -->
<javac <javac
encoding="${build.encoding}" encoding="${build.encoding}"
@ -384,7 +381,7 @@
basedir="${build.classes}"> basedir="${build.classes}">
<manifest> <manifest>
<section name="org/apache/hadoop"> <section name="org/apache/hadoop">
<attribute name="Implementation-Title" value="Hadoop"/> <attribute name="Implementation-Title" value="${ant.project.name}"/>
<attribute name="Implementation-Version" value="${version}"/> <attribute name="Implementation-Version" value="${version}"/>
<attribute name="Implementation-Vendor" value="Apache"/> <attribute name="Implementation-Vendor" value="Apache"/>
</section> </section>
@ -762,7 +759,7 @@
<doclet name="jdiff.JDiff" <doclet name="jdiff.JDiff"
path="${jdiff.jar}:${xerces.jar}"> path="${jdiff.jar}:${xerces.jar}">
<param name="-apidir" value="${jdiff.xml.dir}"/> <param name="-apidir" value="${jdiff.xml.dir}"/>
<param name="-apiname" value="hadoop ${version}"/> <param name="-apiname" value="hadoop-core ${version}"/>
</doclet> </doclet>
<packageset dir="src/java"/> <packageset dir="src/java"/>
<classpath > <classpath >
@ -787,8 +784,8 @@
maxmemory="${javadoc.maxmemory}"> maxmemory="${javadoc.maxmemory}">
<doclet name="jdiff.JDiff" <doclet name="jdiff.JDiff"
path="${jdiff.jar}:${xerces.jar}"> path="${jdiff.jar}:${xerces.jar}">
<param name="-oldapi" value="hadoop ${jdiff.stable}"/> <param name="-oldapi" value="hadoop-core ${jdiff.stable}"/>
<param name="-newapi" value="hadoop ${version}"/> <param name="-newapi" value="hadoop-core ${version}"/>
<param name="-oldapidir" value="${jdiff.xml.dir}"/> <param name="-oldapidir" value="${jdiff.xml.dir}"/>
<param name="-newapidir" value="${jdiff.xml.dir}"/> <param name="-newapidir" value="${jdiff.xml.dir}"/>
<param name="-javadocold" value="${jdiff.stable.javadoc}"/> <param name="-javadocold" value="${jdiff.stable.javadoc}"/>
@ -1246,14 +1243,14 @@
description="Retrieve Ivy-managed artifacts for the test configurations"> description="Retrieve Ivy-managed artifacts for the test configurations">
<ivy:retrieve settingsRef="${ant.project.name}.ivy.settings" <ivy:retrieve settingsRef="${ant.project.name}.ivy.settings"
pattern="${build.ivy.lib.dir}/${ivy.artifact.retrieve.pattern}"/> pattern="${build.ivy.lib.dir}/${ivy.artifact.retrieve.pattern}"/>
<ivy:cachepath pathid="test-classpath" conf="test-hdfswithmr"/> <ivy:cachepath pathid="ivy-test.classpath" conf="test-hdfswithmr"/>
</target> </target>
<target name="ivy-retrieve-test" depends="ivy-resolve-test" <target name="ivy-retrieve-test" depends="ivy-resolve-test"
description="Retrieve Ivy-managed artifacts for the test configurations"> description="Retrieve Ivy-managed artifacts for the test configurations">
<ivy:retrieve settingsRef="${ant.project.name}.ivy.settings" <ivy:retrieve settingsRef="${ant.project.name}.ivy.settings"
pattern="${build.ivy.lib.dir}/${ivy.artifact.retrieve.pattern}"/> pattern="${build.ivy.lib.dir}/${ivy.artifact.retrieve.pattern}"/>
<ivy:cachepath pathid="test-classpath" conf="test"/> <ivy:cachepath pathid="ivy-test.classpath" conf="test"/>
</target> </target>
<target name="ivy-retrieve-common" depends="ivy-resolve-common" <target name="ivy-retrieve-common" depends="ivy-resolve-common"

File diff suppressed because it is too large Load Diff