You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2009/08/16 15:18:29 UTC

svn commit: r804688 - in /maven/shared/trunk/maven-common-artifact-filters: pom.xml src/assembly/ src/assembly/source-release.xml

Author: aheritier
Date: Sun Aug 16 13:18:29 2009
New Revision: 804688

URL: http://svn.apache.org/viewvc?rev=804688&view=rev
Log:
Import assembly descr

Added:
    maven/shared/trunk/maven-common-artifact-filters/src/assembly/
    maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml   (with props)
Modified:
    maven/shared/trunk/maven-common-artifact-filters/pom.xml

Modified: maven/shared/trunk/maven-common-artifact-filters/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-common-artifact-filters/pom.xml?rev=804688&r1=804687&r2=804688&view=diff
==============================================================================
--- maven/shared/trunk/maven-common-artifact-filters/pom.xml (original)
+++ maven/shared/trunk/maven-common-artifact-filters/pom.xml Sun Aug 16 13:18:29 2009
@@ -90,13 +90,6 @@
           <plugin>
             <artifactId>maven-assembly-plugin</artifactId>
             <version>2.2-beta-4</version>
-            <dependencies>
-              <dependency>
-                <groupId>org.apache</groupId>
-                <artifactId>apache-source-release-assembly-descriptor</artifactId>
-                <version>1.0-SNAPSHOT</version>
-              </dependency>
-            </dependencies>
             <executions>
               <execution>
                 <id>source-release-assembly</id>
@@ -106,9 +99,9 @@
                 </goals>
                 <configuration>
                   <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
-                  <descriptorRefs>
-                    <descriptorRef>source-release</descriptorRef>
-                  </descriptorRefs>
+                  <descriptors>
+                    <descriptor>src/assembly/source-release.xml</descriptor>
+                  </descriptors>
                   <tarLongFileFormat>gnu</tarLongFileFormat>
                 </configuration>
               </execution>

Added: maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml?rev=804688&view=auto
==============================================================================
--- maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml (added)
+++ maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml Sun Aug 16 13:18:29 2009
@@ -0,0 +1,78 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+
+<assembly>
+  <id>source-release</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <!-- main project directory structure -->
+    <fileSet>
+      <directory>.</directory>
+      <outputDirectory>/</outputDirectory>
+      <useDefaultExcludes>true</useDefaultExcludes>
+      <excludes>
+        <!-- build output -->
+        <exclude>%regex[(?!.*src/).*${project.build.directory}.*]</exclude>
+        
+        <!-- NOTE: Most of the following excludes should not be required 
+             if the standard release process is followed. This is because the 
+             release plugin checks out project sources into a location like
+             target/checkout, then runs the build from there. The result is
+             a source-release archive that comes from a pretty clean directory
+             structure.
+             
+             HOWEVER, if the release plugin is configured to run extra goals
+             or generate a project website, it's definitely possible that some
+             of these files will be present. So, it's safer to exclude them.
+        -->
+             
+        <!-- IDEs -->
+        <exclude>**/maven-eclipse.xml</exclude>
+        <exclude>**/.project</exclude>
+        <exclude>**/.classpath</exclude>
+        <exclude>**/*.iws</exclude>
+        <exclude>**/*.ipr</exclude>
+        <exclude>**/*.iml</exclude>
+        <exclude>**/.settings</exclude>
+        <exclude>**/.settings/**</exclude>
+        <exclude>**/.externalToolBuilders</exclude>
+        <exclude>**/.externalToolBuilders/**</exclude>
+        <exclude>**/.deployables</exclude>
+        <exclude>**/.deployables/**</exclude>
+        <exclude>**/.wtpmodules</exclude>
+        <exclude>**/.wtpmodules/**</exclude>
+        
+        <!-- misc -->
+        <exclude>**/cobertura.ser</exclude>
+        
+        <!-- release-plugin temp files -->
+        <exclude>**/pom.xml.releaseBackup</exclude>
+        <exclude>**/release.properties</exclude>        
+      </excludes>
+    </fileSet>
+    <!-- license, readme, etc. calculated at build time -->
+    <fileSet>
+      <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+  </fileSets>
+</assembly>

Propchange: maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/shared/trunk/maven-common-artifact-filters/src/assembly/source-release.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision