Title: [jbehave] [663] trunk/plugins/maven/pom.xml: Ensured ant build is executed before maven plugin is built.
Revision
663
Author
mauro
Date
2007-01-04 11:49:58 -0600 (Thu, 04 Jan 2007)

Log Message

Ensured ant build is executed before maven plugin is built.

Modified Paths


Diff

Modified: trunk/plugins/maven/pom.xml (662 => 663)

--- trunk/plugins/maven/pom.xml	2007-01-04 16:43:13 UTC (rev 662)
+++ trunk/plugins/maven/pom.xml	2007-01-04 17:49:58 UTC (rev 663)
@@ -23,5 +23,32 @@
             <version>2.0</version>
         </dependency>
 	</dependencies>
-
+    
+    <build>
+        <plugins>
+          <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <ant antfile="build.xml" dir="../../"
+                                    target="build">
+                                </ant>
+                                <exec executable="sh">
+                                    <arg value="install.sh" />
+                                </exec>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>    
+        </plugins>            
+    </build>
 </project>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to