Author: dims
Date: Fri Oct 29 07:30:22 2004
New Revision: 55972
Modified:
incubator/beehive/trunk/wsm/build.xml
Log:
Fix badtiger references.
Modified: incubator/beehive/trunk/wsm/build.xml
==============================================================================
--- incubator/beehive/trunk/wsm/build.xml (original)
+++ incubator/beehive/trunk/wsm/build.xml Fri Oct 29 07:30:22 2004
@@ -145,18 +145,11 @@
<target name="axis" depends="runtime" if="isJDKOver5">
<!-- makes sure controls.jar has been built -->
<ant dir="${beehive.dir}/controls" target="build"/>
- <!-- Build the badtiger classes using source=1.4 compile flag -->
- <echo message="BadTiger build"/>
- <javac destdir="${runtime.classes}" classpathref="axis.classpath"
source="1.4" debug="on">
- <src path="${runtime.dir}"/>
- <include name="**/axis/badtiger/**"/>
- </javac>
<!-- Build the axis classes -->
<echo message="AXIS build"/>
<javac destdir="${runtime.classes}" classpathref="axis.classpath"
debug="on">
<src path="${runtime.dir}"/>
<include name="**/axis/**"/>
- <exclude name="**/axis/badtiger/**"/>
</javac>
</target>
<!-- ====================================================================
-->
@@ -272,9 +265,7 @@
<target name="docs" if="isJDKOver5">
<javadoc destdir="${docs.dir}/reference/classref_wsm" maxmemory="256M"
windowtitle="WSM Documentation" doctitle="Web Services Metadata" version="true"
author="false" use="true" additionalparam="-breakiterator -noqualifier all
-notimestamp " useexternalfile="true" classpathref="axis.classpath">
<packageset dir="${api.dir}" defaultexcludes="yes" />
- <packageset dir="${runtime.dir}" defaultexcludes="yes">
- <exclude name="**/axis/badtiger"/>
- </packageset>
+ <packageset dir="${runtime.dir}" defaultexcludes="yes"/>
</javadoc>
<fixcrlf srcDir="${docs.dir}/reference/classref_wsm"
includes="**/*.html"/>
</target>