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/07/23 12:53:28 UTC

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

Author: antelder
Date: Fri Jul 23 10:53:28 2010
New Revision: 967037

URL: http://svn.apache.org/viewvc?rev=967037&view=rev
Log:
Remove the profile section as we don't use it and add a deploy plugin config with skip so that the samples don't get deployed to maven

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

Modified: tuscany/sca-java-2.x/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/pom.xml?rev=967037&r1=967036&r2=967037&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/pom.xml Fri Jul 23 10:53:28 2010
@@ -29,12 +29,6 @@
     <packaging>pom</packaging>
     <name>Apache Tuscany SCA Samples</name>
 
-    <profiles>
-        <profile>
-            <id>default</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
             <modules>
                 <module>calculator-osgi</module>
                 <module>dosgi-calculator</module>
@@ -93,7 +87,18 @@
                 <!-- TODO -->
 
             </modules>
-        </profile>
-    </profiles>    
+
+          <build>
+              <plugins>
+                    <plugin>
+                        <inherited>true</inherited>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <version>2.4</version>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </plugin>
+              </plugins>
+          </build>
 
 </project>