svn commit: r14218 - trunk/src/build.xml
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: linus
Date: 2008-03-23 15:29:48-0700
New Revision: 14218
Modified:
trunk/src/build.xml
Log:
Build dependencies explicitly so we don't need to build "package" to run tests.
Modified: trunk/src/build.xml
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/build.xml?view=diff&rev=14218&p1=trunk/src/build.xml&p2=trunk/src/build.xml&r1=14217&r2=14218
==============================================================================
--- trunk/src/build.xml (original)
+++ trunk/src/build.xml 2008-03-23 15:29:48-0700
@@ -305,10 +305,20 @@
description="Run tests.">
<!-- Build the subdirs in order. -->
+
<!-- infra doesn't have tests. -->
+ <ant dir="infra" inheritAll="false" target="jar"/>
+
<!-- model doesn't have tests. -->
+ <ant dir="model" inheritAll="false" target="jar"/>
+
<ant dir="model-mdr" inheritAll="false" target="tests"/>
+
<!-- <ant dir="model-euml" inheritAll="false" target="tests"/> -->
+
+
+ <ant dir="model-mdr" inheritAll="false" target="jar"/>
+
<ant dir="app" inheritAll="false" target="tests"/>
<ant target="tests-reports"/>