You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/04/23 13:33:14 UTC

svn commit: r937257 - /tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml

Author: antelder
Date: Fri Apr 23 11:33:14 2010
New Revision: 937257

URL: http://svn.apache.org/viewvc?rev=937257&view=rev
Log:
Remove the unused plugin

Modified:
    tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml

Modified: tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml?rev=937257&r1=937256&r2=937257&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml Fri Apr 23 11:33:14 2010
@@ -49,34 +49,21 @@
     <build>
        <finalName>${artifactId}</finalName>
        <plugins>
-          <plugin>
-             <groupId>org.apache.maven.plugins</groupId>
-             <artifactId>maven-jar-plugin</artifactId>
-             <version>2.2</version>
-             <configuration>
-                <archive>
-                   <manifest>
-                      <mainClass>sample.HelloworldSCAClient</mainClass>
-                   </manifest>
-                </archive>
-             </configuration>
-          </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.1.1</version>
-        <executions>
-          <execution>
-            <phase>compile</phase>
-            <goals>
-              <goal>java</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <mainClass>sample.HelloworldSCAClient</mainClass>
-        </configuration>
-      </plugin>
-       </plugins>
+         <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+           <artifactId>exec-maven-plugin</artifactId>
+           <version>1.1.1</version>
+           <executions>
+             <execution>
+               <goals>
+                 <goal>java</goal>
+               </goals>
+             </execution>
+           </executions>
+           <configuration>
+             <mainClass>sample.HelloworldSCAClient</mainClass>
+           </configuration>
+         </plugin>
+      </plugins>
     </build>
 </project>