You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/02/20 01:27:59 UTC

svn commit: r1072465 - /commons/sandbox/digester3/trunk/src/examples/pom.xml

Author: simonetripodi
Date: Sun Feb 20 00:27:58 2011
New Revision: 1072465

URL: http://svn.apache.org/viewvc?rev=1072465&view=rev
Log:
added the exec-maven-plugin and configured to execute Main java programs

Modified:
    commons/sandbox/digester3/trunk/src/examples/pom.xml

Modified: commons/sandbox/digester3/trunk/src/examples/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/pom.xml?rev=1072465&r1=1072464&r2=1072465&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/pom.xml (original)
+++ commons/sandbox/digester3/trunk/src/examples/pom.xml Sun Feb 20 00:27:58 2011
@@ -75,6 +75,27 @@
                 </configuration>
             </plugin>
         </plugins>
+
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>exec-maven-plugin</artifactId>
+                    <version>1.1</version>
+                    <executions>
+                        <execution>
+                            <phase>verify</phase>
+                            <goals>
+                                <goal>java</goal>
+                            </goals>
+                            <configuration>
+                                <classpathScope>compile</classpathScope>
+                            </configuration>
+                        </execution>
+                    </executions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
     </build>
 
     <dependencies>