You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2009/06/11 23:58:50 UTC

svn commit: r783936 - in /maven/components/branches/maven-2.2.0-RC/apache-maven: pom.xml src/assemble/source-release.xml

Author: jdcasey
Date: Thu Jun 11 21:58:49 2009
New Revision: 783936

URL: http://svn.apache.org/viewvc?rev=783936&view=rev
Log:
Adding temporary source-release assembly to the apache-maven project.

Added:
    maven/components/branches/maven-2.2.0-RC/apache-maven/src/assemble/source-release.xml
Modified:
    maven/components/branches/maven-2.2.0-RC/apache-maven/pom.xml

Modified: maven/components/branches/maven-2.2.0-RC/apache-maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.2.0-RC/apache-maven/pom.xml?rev=783936&r1=783935&r2=783936&view=diff
==============================================================================
--- maven/components/branches/maven-2.2.0-RC/apache-maven/pom.xml (original)
+++ maven/components/branches/maven-2.2.0-RC/apache-maven/pom.xml Thu Jun 11 21:58:49 2009
@@ -127,7 +127,7 @@
         <version>2.2-beta-4</version>
         <executions>
           <execution>
-            <id>bin-assembly</id>
+            <id>assemblies</id>
             <phase>package</phase>
             <goals>
               <goal>single</goal>
@@ -135,6 +135,7 @@
             <configuration>
               <descriptors>
                 <descriptor>src/assemble/bin.xml</descriptor>
+                <descriptor>src/assemble/source-release.xml</descriptor>
               </descriptors>
             </configuration>
           </execution>

Added: maven/components/branches/maven-2.2.0-RC/apache-maven/src/assemble/source-release.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.2.0-RC/apache-maven/src/assemble/source-release.xml?rev=783936&view=auto
==============================================================================
--- maven/components/branches/maven-2.2.0-RC/apache-maven/src/assemble/source-release.xml (added)
+++ maven/components/branches/maven-2.2.0-RC/apache-maven/src/assemble/source-release.xml Thu Jun 11 21:58:49 2009
@@ -0,0 +1,22 @@
+<assembly>
+  <id>source-release</id>
+  <formats>
+    <format>zip</format>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>${project.basedir}/..</directory>
+      <outputDirectory>/</outputDirectory>
+      <excludes>
+        <exclude>%regex[(?!.*src/).*target.*]</exclude>
+        <exclude>**/*.log</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+  </fileSets>
+  
+</assembly>
\ No newline at end of file