You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2007/11/08 16:13:30 UTC

svn commit: r593190 - in /maven/continuum/trunk: pom.xml src/ src/main/ src/main/assembly/ src/main/assembly/src.xml

Author: evenisse
Date: Thu Nov  8 07:13:29 2007
New Revision: 593190

URL: http://svn.apache.org/viewvc?rev=593190&view=rev
Log:
package src archive with the release profile

Added:
    maven/continuum/trunk/src/
    maven/continuum/trunk/src/main/
    maven/continuum/trunk/src/main/assembly/
    maven/continuum/trunk/src/main/assembly/src.xml   (with props)
Modified:
    maven/continuum/trunk/pom.xml

Modified: maven/continuum/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/pom.xml?rev=593190&r1=593189&r2=593190&view=diff
==============================================================================
--- maven/continuum/trunk/pom.xml (original)
+++ maven/continuum/trunk/pom.xml Thu Nov  8 07:13:29 2007
@@ -690,9 +690,26 @@
       <build>
         <plugins>
           <plugin>
-            <!-- TODO:  Remove after maven-parent v6 is released -->
-            <artifactId>maven-gpg-plugin</artifactId>
-            <version>1.0-alpha-3</version>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-1</version>
+            <inherited>false</inherited>
+            <configuration>
+              <descriptors>
+                <descriptor>src/main/assembly/src.xml</descriptor>
+              </descriptors>
+              <tarLongFileMode>gnu</tarLongFileMode>
+              <appendAssemblyId>false</appendAssemblyId>
+              <finalName>apache-archiva-${version}-src</finalName>
+            </configuration>
+            <executions>
+              <execution>
+                <id>make-assembly</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+              </execution>
+            </executions>
           </plugin>
         </plugins>
       </build>

Added: maven/continuum/trunk/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/src/main/assembly/src.xml?rev=593190&view=auto
==============================================================================
--- maven/continuum/trunk/src/main/assembly/src.xml (added)
+++ maven/continuum/trunk/src/main/assembly/src.xml Thu Nov  8 07:13:29 2007
@@ -0,0 +1,58 @@
+<?xml version="1.0" ?>
+
+<!--
+  ~ 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>src</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>.</directory>
+      <outputDirectory>/</outputDirectory>
+      <excludes>
+        <exclude>**/target/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/css/redback/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/images/redback/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/META-INF/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/template/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/classes/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/lib/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/database/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/logs/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/redback/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/jsp/redback/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/template/redback/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/logs/**</exclude>
+        <exclude>continuum-webapp/src/main/webapp/WEB-INF/temp/**</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <directory>target/maven-shared-archive-resources/META-INF/</directory>
+      <outputDirectory>/</outputDirectory>
+      <includes>
+        <include>NOTICE</include>
+        <include>LICENSE</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>
+

Propchange: maven/continuum/trunk/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"