Author: simonetripodi
Date: Sun Feb 20 00:30:27 2011
New Revision: 1072467
URL: http://svn.apache.org/viewvc?rev=1072467&view=rev
Log:
added the exec plugin configuration
Modified:
commons/sandbox/digester3/trunk/src/examples/addressbook/pom.xml
Modified: commons/sandbox/digester3/trunk/src/examples/addressbook/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/addressbook/pom.xml?rev=1072467&r1=1072466&r2=1072467&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/addressbook/pom.xml (original)
+++ commons/sandbox/digester3/trunk/src/examples/addressbook/pom.xml Sun Feb 20
00:30:27 2011
@@ -32,4 +32,19 @@
<packaging>jar</packaging>
<name>Commons Digester :: Examples :: Address Book</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <configuration>
+
<mainClass>org.apache.commons.digester3.examples.addressbook.Main</mainClass>
+ <arguments>
+ <argument>example.xml</argument>
+ </arguments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>