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/20 09:53:35 UTC

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

Author: antelder
Date: Tue Apr 20 07:53:35 2010
New Revision: 935826

URL: http://svn.apache.org/viewvc?rev=935826&view=rev
Log:
Change helloworld sample back to be a jar instead of a zip as it is a bit simpler so for the very first sample it seems better to be as simple as possible

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

Modified: tuscany/sca-java-2.x/trunk/samples/helloworld/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/helloworld/pom.xml?rev=935826&r1=935825&r2=935826&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/helloworld/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/helloworld/pom.xml Tue Apr 20 07:53:35 2010
@@ -26,7 +26,7 @@
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
-    <packaging>zip</packaging>
+    <packaging>jar</packaging>
     <artifactId>sample-helloworld</artifactId>
     <name>Apache Tuscany SCA Sample Helloworld</name>
 
@@ -49,18 +49,10 @@
        <finalName>${artifactId}</finalName>
        <plugins>
          <plugin>
-            <groupId>org.apache.tuscany.maven.plugins</groupId>
-            <artifactId>maven-zip-plugin</artifactId>
-            <version>alpha2</version>
-            <extensions>true</extensions>
-         </plugin>
-
-         <plugin>
              <groupId>org.apache.tuscany.maven.plugins</groupId>
              <artifactId>maven-tuscany-plugin</artifactId>
              <version>2.0-SNAPSHOT</version>
          </plugin>
-
        </plugins>
     </build>
 </project>