You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2005/09/06 20:02:37 UTC

svn commit: r279048 - /geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml

Author: geirm
Date: Tue Sep  6 11:02:32 2005
New Revision: 279048

URL: http://svn.apache.org/viewcvs?rev=279048&view=rev
Log:
GERONIMODEVTOOLS-7

Added:
    geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml

Added: geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml?rev=279048&view=auto
==============================================================================
--- geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml (added)
+++ geronimo/trunk/sandbox/eclipse-plugin/org.apache.geronimo.runtime.v1/maven.xml Tue Sep  6 11:02:32 2005
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project default="default"
+    xmlns:j="jelly:core"
+    xmlns:ant="jelly:ant">
+
+    <goal name="default">
+        <attainGoal name="build"/>
+    </goal>
+
+    <goal name="build">
+        <attainGoal name="copyjars"/>
+    </goal>
+
+    <goal name="rebuild">
+        <attainGoal name="clean"/>
+        <attainGoal name="build"/>
+      </goal>
+
+    <goal name="copyjars">        
+        <j:forEach var="artifact" items="${pom.artifacts}">
+            <j:set var="dependency" value="${artifact.dependency}"/>  
+            <j:if test="${dependency.getProperty('lib') == 'true'}">  
+                <ant:copy todir="${maven.build.dest}" file="${artifact.path}"/>
+            </j:if>            
+        </j:forEach>                 
+    </goal>  
+     
+</project>