MPCRUISECONTROL-19: Fix order in which the CruiseControl's <code>&lt;project&gt;</code> elements are generated. They must be in the order of the less dependent project first.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@154046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2005-02-16 16:57:43 +00:00
parent a5da0e7d1d
commit 43ff596cde
3 changed files with 17 additions and 1 deletions

View File

@@ -85,6 +85,15 @@
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Vincent Massol</name>
<id>vmassol</id>
<email>vmassol@apache.org</email>
<organization>Apache Software Foundation</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>

View File

@@ -29,6 +29,7 @@
xmlns="dummy" trim="false">
<jsl:template match="cruisecontrol" trim="false">
<jsl:copy>
<jsl:applyTemplates select="./project" />
<!-- TODO: more configurable -->
<project name="${pom.artifactId}">
<!-- FIXME: Shouldn't this use the second element of pom.repository.connection -->
@@ -205,7 +206,6 @@
</j:if>
</plugins>
</project>
<jsl:applyTemplates select="./project" />
</jsl:copy>
</jsl:template>

View File

@@ -24,6 +24,13 @@
<author email="brett@apache.org">Brett Porter</author>
</properties>
<body>
<release version="1.7" date="in SVN">
<action dev="vmassol" type="fix" issue="MPCRUISECONTROL-19">
Fix order in which the CruiseControl's <code>&lt;project&gt;</code>
elements are generated. They must be in the order of the less
dependent project first.
</action>
</release>
<release version="1.6" date="2004-12-06">
<action dev="epugh" type="add" issue="MPCRUISECONTROL-15">Lost script extension when use "maven cruisecontrol:configure" command</action>
<action dev="epugh" type="add" issue="MPCRUISECONTROL-14" due-to="Marcin Gurbisz">Add more configuration, especially better handling of emails.</action>