Author: linus Date: 2012-05-18 07:17:48-0700 New Revision: 19883 Added: trunk/src/argouml-app/tests/pom.xml Modified: trunk/src/argouml-app/tests/ (props changed) trunk/src/argouml-app/tests/.gitignore
Log: Added packaging of testmodels. Modified: trunk/src/argouml-app/tests/.gitignore Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/tests/.gitignore?view=diff&pathrev=19883&r1=19882&r2=19883 ============================================================================== --- trunk/src/argouml-app/tests/.gitignore (original) +++ trunk/src/argouml-app/tests/.gitignore 2012-05-18 07:17:48-0700 @@ -1,3 +1,4 @@ /build-eclipse /Alittlebitofeverything2.zargo /test.xmi +/target Added: trunk/src/argouml-app/tests/pom.xml Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/tests/pom.xml?view=markup&pathrev=19883 ============================================================================== --- (empty file) +++ trunk/src/argouml-app/tests/pom.xml 2012-05-18 07:17:48-0700 @@ -0,0 +1,30 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 + http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <!-- + Experimenting with maven for the nightly build. + --> + + <groupId>org.argouml</groupId> + <artifactId>testmodels</artifactId> + <version>0.35.1</version> + + <build> + <resources> + <resource> + <directory>${project.basedir}</directory> + <includes> + <include>testmodels/**</include> + </includes> + </resource> + </resources> + </build> + + <name>testmodels</name> + <description> +Packaging of the tested models to allow reuse of them also when using git+maven. + </description> +</project> ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2961674 To unsubscribe from this discussion, e-mail: [[email protected]].
