1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
--- a/build.xml
+++ b/build.xml
@@ -489,7 +489,7 @@
</target>
-->
- <target name="dist" depends="jar,sigtest,jdoc,examples">
+ <target name="dist" depends="jar,jdoc,examples">
<zip zipFile="${out.dist}/src.zip" basedir="${src}" excludes="**/optimizer/**/*" />
</target>
@@ -543,13 +543,13 @@
<!-- ===== BINARY COMPATIBILITY ==== -->
<!-- ================================== -->
- <target name="sigtest-setup" depends="jar">
+ <!--<target name="sigtest-setup" depends="jar">
<ant antfile="${test}/build.xml" target="sigtest-setup" inheritRefs="true" />
</target>
<target name="sigtest" depends="jar">
<ant antfile="${test}/build.xml" target="sigtest" inheritRefs="true" />
- </target>
+ </target>-->
<!-- =================================== -->
<!-- ========== CLEAN ========== -->
--- a/test/build.xml
+++ b/test/build.xml
@@ -213,7 +213,7 @@
<!-- ===== BINARY COMPATIBILITY ==== -->
<!-- ================================== -->
- <target name="sigtest-setup">
+ <!--<target name="sigtest-setup">
<java classname="com.sun.tdk.signaturetest.Setup">
<classpath>
<pathelement location="${test}/lib/sigtestdev.jar"/>
@@ -228,9 +228,9 @@
<arg value="-filename"/>
<arg value="${test}/ASM.sig"/>
</java>
- </target>
+ </target>-->
- <target name="sigtest">
+ <!--<target name="sigtest">
<taskdef name="atest" classname="com.sun.tdk.signaturetest.ant.ATest"
classpath="${test}/lib/sigtestdev.jar"/>
<atest filename="${test}/ASM.sig"
@@ -244,6 +244,6 @@
<pathelement location="${out.dist}/lib/all/asm-all-${product.artifact}.jar"/>
</classpath>
</atest>
- </target>
+ </target>-->
</project>
|