You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/11/26 11:53:21 UTC

svn commit: r884499 - in /commons/sandbox/runtime/trunk: pom.xml src/assembly/ src/assembly/src.xml

Author: niallp
Date: Thu Nov 26 10:53:20 2009
New Revision: 884499

URL: http://svn.apache.org/viewvc?rev=884499&view=rev
Log:
Add source assembly descriptor

Added:
    commons/sandbox/runtime/trunk/src/assembly/
    commons/sandbox/runtime/trunk/src/assembly/src.xml   (with props)
Modified:
    commons/sandbox/runtime/trunk/pom.xml

Modified: commons/sandbox/runtime/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/pom.xml?rev=884499&r1=884498&r2=884499&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/pom.xml (original)
+++ commons/sandbox/runtime/trunk/pom.xml Thu Nov 26 10:53:20 2009
@@ -79,6 +79,17 @@
       <!-- prevent compilation -->
       <sourceDirectory></sourceDirectory>
       <testSourceDirectory></testSourceDirectory>
+      <plugins>
+        <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <configuration>
+                <descriptors>
+                    <descriptor>src/assembly/src.xml</descriptor>
+                </descriptors>
+                <tarLongFileMode>gnu</tarLongFileMode>
+            </configuration>
+        </plugin>
+      </plugins>
     </build>
 
     <reporting>

Added: commons/sandbox/runtime/trunk/src/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/assembly/src.xml?rev=884499&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/assembly/src.xml (added)
+++ commons/sandbox/runtime/trunk/src/assembly/src.xml Thu Nov 26 10:53:20 2009
@@ -0,0 +1,40 @@
+<!--
+ 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>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>${artifactId}-${version}-src</baseDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>build.properties.default</include>
+                <include>build.properties.in</include>
+                <include>build.xml</include>
+                <include>configure</include>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>src</directory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/sandbox/runtime/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/runtime/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL