You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by mc...@apache.org on 2009/04/20 21:08:02 UTC

svn commit: r766802 - /felix/trunk/pom/pom.xml

Author: mcculls
Date: Mon Apr 20 19:08:02 2009
New Revision: 766802

URL: http://svn.apache.org/viewvc?rev=766802&view=rev
Log:
Avoid attaching the assembly artifacts, as these don't need to be deployed to Maven

Modified:
    felix/trunk/pom/pom.xml

Modified: felix/trunk/pom/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/pom/pom.xml?rev=766802&r1=766801&r2=766802&view=diff
==============================================================================
--- felix/trunk/pom/pom.xml (original)
+++ felix/trunk/pom/pom.xml Mon Apr 20 19:08:02 2009
@@ -29,7 +29,7 @@
   <artifactId>felix</artifactId>
   <packaging>pom</packaging>
   <name>Apache Felix</name>
-  <version>1.2.1-SNAPSHOT</version>
+  <version>1.2.0-SNAPSHOT</version>
   <url>http://felix.apache.org/</url>
   <inceptionYear>2006</inceptionYear>
   <description>Apache Felix is an OSGi implementation.</description>
@@ -108,8 +108,11 @@
                 <id>make-assembly</id>
                 <phase>package</phase>
                 <goals>
-                  <goal>attached</goal>
+                  <goal>single</goal>
                 </goals>
+                <configuration>
+                  <attach>false</attach>
+                </configuration>
               </execution>
             </executions>
           </plugin>
@@ -289,6 +292,7 @@
         <configuration>
           <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
           <useReleaseProfile>false</useReleaseProfile>
+          <arguments>-Prelease</arguments> 
           <goals>deploy</goals>
         </configuration>
       </plugin>