Author: brett
Date: Thu Jun 14 19:52:42 2007
New Revision: 547502
URL: http://svn.apache.org/viewvc?view=rev&rev=547502
Log:
- include license
- use maven-$version-src as the output directory
- build tarballs as well as zip
Modified:
maven/components/branches/maven-2.0.x/pom.xml
maven/components/branches/maven-2.0.x/src/main/assembly/src.xml
Modified: maven/components/branches/maven-2.0.x/pom.xml
URL:
http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/pom.xml?view=diff&rev=547502&r1=547501&r2=547502
==============================================================================
--- maven/components/branches/maven-2.0.x/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/pom.xml Thu Jun 14 19:52:42 2007
@@ -275,7 +275,7 @@
<descriptor>src/main/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
- <finalName>maven</finalName>
+ <finalName>maven-${project.version}-src</finalName>
</configuration>
<executions>
<execution>
Modified: maven/components/branches/maven-2.0.x/src/main/assembly/src.xml
URL:
http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/src/main/assembly/src.xml?view=diff&rev=547502&r1=547501&r2=547502
==============================================================================
--- maven/components/branches/maven-2.0.x/src/main/assembly/src.xml (original)
+++ maven/components/branches/maven-2.0.x/src/main/assembly/src.xml Thu Jun 14
19:52:42 2007
@@ -21,6 +21,8 @@
<id>src</id>
<formats>
<format>zip</format>
+ <format>tar.gz</format>
+ <format>tar.bz2</format>
</formats>
<fileSets>
<fileSet>
@@ -29,6 +31,10 @@
<excludes>
<exclude>**/target/**</exclude>
</excludes>
+ </fileSet>
+ <fileSet>
+ <directory>target/maven-shared-archive-resources/META-INF</directory>
+ <outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>