|
From: Scott M S. <st...@us...> - 2003-05-18 06:28:08
|
User: starksm
Date: 03/05/17 23:28:07
Modified: . Tag: Branch_3_2 build.xml
Log:
Update the build scripts to not refer to the buildmagic entity using the resource url. This allows ant to be used directly as the build scripts are not needed. Also fixed the clean target problem with not being able to delete the jsr77.jar
Revision Changes Path
No revision
No revision
1.165.2.67 +3 -61 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.66
retrieving revision 1.165.2.67
diff -u -r1.165.2.66 -r1.165.2.67
--- build.xml 18 May 2003 01:12:05 -0000 1.165.2.66
+++ build.xml 18 May 2003 06:28:06 -0000 1.165.2.67
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [
- <!ENTITY buildmagic SYSTEM "resource://org/jboss/tools/buildmagic/common.xml">
- <!ENTITY mqstress SYSTEM "mqstress.xml">
+ <!ENTITY buildmagic SYSTEM "../tools/etc/buildmagic/buildmagic.ent">
+ <!ENTITY mqstress SYSTEM "mqstress.xml">
]>
<!-- ====================================================================== -->
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.66 2003/05/18 01:12:05 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.67 2003/05/18 06:28:06 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3777,64 +3777,6 @@
</fileset>
</ear>
</target>
-
- <!-- ================================================================== -->
- <!-- Documents -->
- <!-- ================================================================== -->
-
- <!--
- | Create all generated documenation.
- |
- | This target should depend on other docs-* targets for each
- | different type of docuementation that is to be generated.
- -->
-
- <target name="docs" description="Builds all documentation."
- depends="init, docs-api">
- </target>
-
- <!-- Javadocs is an exception, but provide a docs-api to conform. -->
- <target name="docs-api" depends="docs-javadocs"/>
-
- <!--
- | Check if we need to build javadocs
- |
- | Javadocs will only be generated if one or more .java source files
- | is newer than the generated index.html.
- -->
-
- <target name="docs-javadocs-check" depends="init">
- <!-- if index.html is newer than the sources we are up to date -->
- <uptodate property="docs-javadocs.disable"
- targetfile="${build.api}/index.html">
- <srcfiles dir="${source.java}" includes="**/*.java"/>
- </uptodate>
- </target>
-
- <!-- Generate Javadoc if we are out of date -->
- <target name="docs-javadocs" depends="docs-javadocs-check" unless="docs-javadocs.disable">
- <mkdir dir="${build.api}"/>
- <javadoc packagenames="${javadoc.packages}"
- sourcepath="${source.java}"
- destdir="${build.api}"
- classpathref="javadoc.classpath"
- windowtitle="${javadoc.windowtitle}"
- splitindex="${javadoc.splitindex}"
- doctitle="${javadoc.doctitle}"
- author="${javadoc.author}"
- version="${javadoc.version}"
- public="${javadoc.public}"
- package="${javadoc.package}"
- protected="${javadoc.protected}"
- private="${javadoc.private}"
- use="${javadoc.use}"
- verbose="${javadoc.verbose}">
- <!-- <group title="??" packages="org.jboss.*"/> -->
- </javadoc>
- </target>
-
- <target name="javadocs" depends="docs-javadocs"/>
-
<!-- ================================================================== -->
<!-- Install & Release -->
|