michal 2003/07/01 01:43:52
Modified: src/plugins-build/war plugin.jelly project.xml
src/plugins-build/war/xdocs changes.xml
Log:
Iterating over artifacts not deps
Revision Changes Path
1.20 +4 -2 maven/src/plugins-build/war/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/war/plugin.jelly,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- plugin.jelly 19 Jun 2003 14:01:51 -0000 1.19
+++ plugin.jelly 1 Jul 2003 08:43:51 -0000 1.20
@@ -125,8 +125,10 @@
</ant:copy>
</j:if>
- <j:forEach var="dep" items="${pom.dependencies}">
-
+
+
+ <j:forEach var="lib" items="${pom.artifacts}">
+ <j:set var="dep" value="${lib.dependency}"/>
<j:if test="${dep.getProperty('war.bundle')=='true' and dep.type =='jar' }">
<ant:copy todir="${webapp.build.lib}"
file="${maven.repo.local}/${dep.artifactDirectory}/jars/${dep.artifact}"/>
1.12 +10 -1 maven/src/plugins-build/war/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/war/project.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- project.xml 13 Apr 2003 02:32:15 -0000 1.11
+++ project.xml 1 Jul 2003 08:43:51 -0000 1.12
@@ -28,6 +28,15 @@
</roles>
</developer>
<developer>
+ <name>Michal Maczka</name>
+ <id>michal</id>
+ <email>[EMAIL PROTECTED]</email>
+ <organization>Dimatics</organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
<name>Vincent Massol</name>
<id>vmassol</id>
<email>[EMAIL PROTECTED]</email>
@@ -35,7 +44,7 @@
<roles>
<role>Java Developer</role>
</roles>
- </developer>
+ </developer>
</developers>
<dependencies/>
</project>
1.5 +6 -0 maven/src/plugins-build/war/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/war/xdocs/changes.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- changes.xml 13 Apr 2003 02:35:12 -0000 1.4
+++ changes.xml 1 Jul 2003 08:43:51 -0000 1.5
@@ -11,6 +11,12 @@
<action dev="dion" type="fix" due-to="Ben Hogan">
Allow war file to be updated
</action>
+ <action dev="michal" type="fix">
+ Iterating artifacts not depedencies
+ </action>
+ <action dev="michal" type="add">
+ Added deploy, deploy-snapshot and install-snapshot goals
+ </action>
</release>
<release version="1.3" date="2002-04-08">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]