Author: linus Date: 2010-12-28 06:36:06-0800 New Revision: 18945 Modified: trunk/tools/maven/parentpom.xml trunk/tools/maven/toppom.xml
Log: Updated the general poms with some general information. Modified: trunk/tools/maven/parentpom.xml Url: http://argouml.tigris.org/source/browse/argouml/trunk/tools/maven/parentpom.xml?view=diff&pathrev=18945&r1=18944&r2=18945 ============================================================================== --- trunk/tools/maven/parentpom.xml (original) +++ trunk/tools/maven/parentpom.xml 2010-12-28 06:36:06-0800 @@ -13,18 +13,22 @@ <version>0.1</version> <packaging>pom</packaging> - <repositories> - <repository> - <id>argouml</id> - <name>ArgoUML Release Repository</name> - <layout>default</layout> - <url>http://argouml-downloads.tigris.org/maven2</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - </repositories> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.8.1</version> + <type>jar</type> + <scope>test</scope> + <optional>true</optional> + </dependency> + </dependencies> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <!-- Build Settings --> <build> <sourceDirectory>${project.basedir}/src</sourceDirectory> <testSourceDirectory>${project.basedir}/tests</testSourceDirectory> @@ -50,17 +54,6 @@ </plugins> </build> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.8.1</version> - <type>jar</type> - <scope>test</scope> - <optional>true</optional> - </dependency> - </dependencies> - <reporting> <plugins> <plugin> @@ -107,4 +100,28 @@ </plugins> </reporting> + <!-- Environment Settings --> + <issueManagement> + <system>Issuezilla</system> + <url>http://argouml.tigris.org/project_bugs.html</url> + </issueManagement> + + <ciManagement> + <system>Hudson</system> + <url>http://closettop.homelinux.org:8080/</url> + </ciManagement> + + + <repositories> + <repository> + <id>argouml</id> + <name>ArgoUML Release Repository</name> + <layout>default</layout> + <url>http://argouml-downloads.tigris.org/maven2</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> + </project> Modified: trunk/tools/maven/toppom.xml Url: http://argouml.tigris.org/source/browse/argouml/trunk/tools/maven/toppom.xml?view=diff&pathrev=18945&r1=18944&r2=18945 ============================================================================== --- trunk/tools/maven/toppom.xml (original) +++ trunk/tools/maven/toppom.xml 2010-12-28 06:36:06-0800 @@ -17,4 +17,10 @@ <module>../..</module> <module>../../../argouml-actionscript3</module> </modules> + + <name>ManyArgoUMLProjects</name> + <description> +The ArgoUML project contains separate projects for plugins. +This project is the virtual project that includes them all. + </description> </project> ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2694329 To unsubscribe from this discussion, e-mail: [[email protected]].
