User: user57
Date: 01/09/11 16:43:43
Modified: . build.xml
Log:
o changes select <call target=""/> to depends=""
o loading task defaults after overrides.
Revision Changes Path
1.16 +38 -38 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 2001/09/11 05:29:13 1.15
+++ build.xml 2001/09/11 23:43:43 1.16
@@ -10,7 +10,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.15 2001/09/11 05:29:13 user57 Exp $ -->
+<!-- $Id: build.xml,v 1.16 2001/09/11 23:43:43 user57 Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -285,9 +285,6 @@
<!-- Configure the tasks used by this module. -->
<target name="_configure-tasks" unless="configure-tasks.disable">
- <!-- Load common task properties -->
- <property resource="planet57/tools/buildmagic/task.properties"/>
-
<!-- Where source files live -->
<property name="source.java" value="${module.source}/main"/>
<property name="source.etc" value="${module.source}/etc"/>
@@ -347,6 +344,9 @@
<property name="junit.timeout" value="600000"/> <!-- 10 minutes -->
<property name="junit.batchtest.todir" value="${build.reports}"/>
<property name="junit.jvm.options" value="-Ddummy"/>
+
+ <!-- Load common task properties -->
+ <property resource="planet57/tools/buildmagic/task.properties"/>
</target>
@@ -448,36 +448,36 @@
| Build all jar files.
-->
- <target name="jars" depends="compile" description="Builds all jar files.">
- <call target="_jars-bank"/>
- <call target="_jars-bmp"/>
- <call target="_jars-cts"/>
- <call target="_jars-hello"/>
- <call target="_jars-idgen"/>
- <call target="_jars-dbtest"/>
- <call target="_jars-jmsra"/>
- <call target="_jars-mdb"/>
- <call target="_jars-lock"/>
- <call target="_jars-readahead"/>
- <call target="_jars-xa"/>
- <call target="_jars-jmx"/>
- <call target="_jars-naming"/>
- <call target="_jars-jbossmq"/>
- <call target="_jars-load"/>
- <call target="_jars-jrmp"/>
- <call target="_jars-threading"/>
- <call target="_jars-testbean"/>
- <call target="_jars-perf"/>
- <call target="_jars-web"/>
- <call target="_jars-bench"/>
- <call target="_jars-security"/>
+ <target name="jars" description="Builds all jar files."
+ depends="compile,
+ _jars-bank,
+ _jars-bmp,
+ _jars-cts,
+ _jars-hello,
+ _jars-idgen,
+ _jars-dbtest,
+ _jars-jmsra,
+ _jars-mdb,
+ _jars-lock,
+ _jars-readahead,
+ _jars-xa,
+ _jars-jmx,
+ _jars-naming,
+ _jars-jbossmq,
+ _jars-load,
+ _jars-jrmp,
+ _jars-threading,
+ _jars-testbean,
+ _jars-perf,
+ _jars-web,
+ _jars-bench,
+ _jars-security">
</target>
<!--
| These targets are meant to be invoked from the 'jars' target. They
| do not depend on 'compile' to avoid recursing over those tasks over
- | and over. This is because of a dependency problem with the
- | call/antcall task.
+ | and over.
|
| If you really want to run these outside of 'jars', then besure that
| the 'compile' targets has be run or you are bound to run into lots of
@@ -1312,8 +1312,8 @@
| different type of docuementation that is to be generated.
-->
- <target name="docs" depends="init" description="Builds all documentation.">
- <call target="docs-api"/>
+ <target name="docs" description="Builds all documentation."
+ depends="init, docs-api">
</target>
<!-- Javadocs is an exception, but provide a docs-api to conform. -->
@@ -1353,8 +1353,7 @@
encoding="${javadoc.encoding}"
use="${javadoc.use}"
verbose="${javadoc.verbose}">
- <group title="JDBC Extension" packages="javax.sql*"/>
- <group title="J2EE" packages="javax*"/>
+ <!-- <group title="??" packages="org.jboss.*"/> -->
</javadoc>
</target>
@@ -1424,11 +1423,12 @@
| Run all tests.
-->
- <target name="tests" depends="init, jars" description="Execute all tests.">
- <call target="tests-standard"/>
- <call target="tests-client"/>
- <call target="tests-security-basic"/>
- <call target="tests-report"/>
+ <target name="tests" description="Execute all tests."
+ depends="init,
+ tests-standard,
+ tests-client,
+ tests-security-basic,
+ tests-report">
</target>
<!--
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development