You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ro...@apache.org on 2007/07/27 23:11:22 UTC

svn commit: r560383 - /webservices/axis2/trunk/java/modules/soapmonitor/pom.xml

Author: robertlazarski
Date: Fri Jul 27 14:11:20 2007
New Revision: 560383

URL: http://svn.apache.org/viewvc?view=rev&rev=560383
Log:
Added maven-antrun-plugin to soapmonitor so that it once again creates its jar

Modified:
    webservices/axis2/trunk/java/modules/soapmonitor/pom.xml

Modified: webservices/axis2/trunk/java/modules/soapmonitor/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/soapmonitor/pom.xml?view=diff&rev=560383&r1=560382&r2=560383
==============================================================================
--- webservices/axis2/trunk/java/modules/soapmonitor/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/soapmonitor/pom.xml Fri Jul 27 14:11:20 2007
@@ -72,6 +72,28 @@
 					<skip>false</skip>
 				</configuration>
 			</plugin>
+                        <plugin>
+                                <groupId>org.apache.maven.plugins</groupId>
+                                <artifactId>maven-antrun-plugin</artifactId>
+                                <executions>
+                                  <execution>
+                                    <id>process-classes</id>
+                                    <phase>process-classes</phase>
+                                    <configuration>
+                                      <tasks>
+                                        <echo message="Creating soapmonitor jar..."/>
+                                        <jar destfile="${pom.basedir}/target/${project.build.finalName}.jar"
+                                           basedir="${pom.basedir}/target/classes"
+                                           excludes="**/module.xml,*handlers*,**/*Module*,**/*Handler*"
+                                        />
+                                      </tasks>
+                                    </configuration>
+                                    <goals>
+                                      <goal>run</goal>
+                                    </goals>
+                                  </execution>
+                                </executions>
+                        </plugin>
 			<plugin>
 				<groupId>org.apache.axis2</groupId>
 				<artifactId>axis2-mar-maven-plugin</artifactId>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org