Author: fmeschbe
Date: Wed Nov 4 21:01:56 2009
New Revision: 832872
URL: http://svn.apache.org/viewvc?rev=832872&view=rev
Log:
SLING-1168 Replace predefined "project" assembly descriptor with the
Source Release Assembly descriptor
Modified:
sling/trunk/parent/pom.xml
Modified: sling/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=832872&r1=832871&r2=832872&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Wed Nov 4 21:01:56 2009
@@ -328,9 +328,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.apache.resources</groupId>
+
<artifactId>apache-source-release-assembly-descriptor</artifactId>
+ <version>1.0.1</version>
+ </dependency>
+ <dependency>
+ <!-- NOTE: The fix for PLXUTILS-120 is crucial
for the new assembly descriptor -->
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ </dependencies>
<configuration>
<descriptorRefs>
- <descriptorRef>project</descriptorRef>
+ <descriptorRef>source-release</descriptorRef>
</descriptorRefs>
</configuration>
<executions>