Avoid attaching the assembly artifacts, as these don't need to be deployed to Maven

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@766802 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom/pom.xml b/pom/pom.xml
index 87a2480..0e1bc72 100644
--- a/pom/pom.xml
+++ b/pom/pom.xml
@@ -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>