Author: euluis Date: 2011-04-14 17:16:04-0700 New Revision: 19243 Modified: trunk/src/argouml-build/build.xml
Log: fixing ant build Modified: trunk/src/argouml-build/build.xml Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-build/build.xml?view=diff&pathrev=19243&r1=19242&r2=19243 ============================================================================== --- trunk/src/argouml-build/build.xml (original) +++ trunk/src/argouml-build/build.xml 2011-04-14 17:16:04-0700 @@ -244,6 +244,7 @@ <ant dir="../argouml-core-model-euml" inheritAll="false" target="install"/> <ant dir="../argouml-app" inheritAll="false" target="jar"/> + <ant dir="../argouml-core-notation" inheritAll="false" target="jar"/> <ant dir="../argouml-core-diagrams-state2" inheritAll="false" target="jar"/> <ant dir="../argouml-core-diagrams-sequence2" inheritAll="false" target="jar"/> <ant dir="../argouml-core-diagrams-activity2" inheritAll="false" target="jar"/> @@ -276,6 +277,9 @@ </delete> <mkdir dir="${argo.build.dir}/ext"/> <copy todir="${argo.build.dir}/ext" includeEmptyDirs="false"> + <fileset dir="../argouml-core-notation/build"> + <include name="*"/> + </fileset> <fileset dir="../argouml-core-diagrams-state2/build"> <include name="*"/> </fileset> @@ -372,6 +376,9 @@ <ant dir="../argouml-core-model-mdr" inheritAll="false" target="jar"/> <ant dir="../argouml-app" inheritAll="false" target="jar"/> + <!-- Tests for notation --> + <!-- Currently none. --> + <!-- Tests for state2 --> <!-- Currently none. --> @@ -411,6 +418,9 @@ <fileset dir="../argouml-app"> <include name="build/tests/reports/**/TEST-*.xml"/> </fileset> + <fileset dir="../argouml-core-notation"> + <include name="build/tests/reports/**/TEST-*.xml"/> + </fileset> <fileset dir="../argouml-core-diagrams-state2"> <include name="build/tests/reports/**/TEST-*.xml"/> </fileset> @@ -477,6 +487,8 @@ inheritAll="false" target="clean"/> <ant dir="../argouml-core-diagrams-state2" inheritAll="false" target="clean"/> + <ant dir="../argouml-core-notation" + inheritAll="false" target="clean"/> <ant dir="../argouml-app" inheritAll="false" target="clean"/> <ant dir="../argouml-core-model-euml" inheritAll="false" target="clean"/> <ant dir="../argouml-core-model-mdr" inheritAll="false" target="clean"/> @@ -519,6 +531,7 @@ <pathelement location="../argouml-app/src"/> <pathelement location="../argouml-core-model/src"/> <pathelement location="../argouml-core-model-mdr/src"/> + <pathelement location="../argouml-core-notation/src"/> <pathelement location="../argouml-core-diagrams-state2/src"/> <pathelement location="../argouml-core-diagrams-sequence2/src"/> <pathelement location="../argouml-core-diagrams-activity2/src"/> ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2719954 To unsubscribe from this discussion, e-mail: [[email protected]].
