You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ftpserver-commits@incubator.apache.org by ng...@apache.org on 2007/02/20 16:12:29 UTC

svn commit: r509626 - in /incubator/ftpserver/trunk/distribution/src/main/assemblies: bin-with-dependencies.xml bin.xml source-jar.xml src.xml

Author: ngn
Date: Tue Feb 20 08:12:29 2007
New Revision: 509626

URL: http://svn.apache.org/viewvc?view=rev&rev=509626
Log:
Renaming and modified src.xml to include all sources

Added:
    incubator/ftpserver/trunk/distribution/src/main/assemblies/bin.xml
      - copied unchanged from r509245, incubator/ftpserver/trunk/distribution/src/main/assemblies/bin-with-dependencies.xml
    incubator/ftpserver/trunk/distribution/src/main/assemblies/src.xml
      - copied, changed from r509245, incubator/ftpserver/trunk/distribution/src/main/assemblies/source-jar.xml
Removed:
    incubator/ftpserver/trunk/distribution/src/main/assemblies/bin-with-dependencies.xml
    incubator/ftpserver/trunk/distribution/src/main/assemblies/source-jar.xml

Copied: incubator/ftpserver/trunk/distribution/src/main/assemblies/src.xml (from r509245, incubator/ftpserver/trunk/distribution/src/main/assemblies/source-jar.xml)
URL: http://svn.apache.org/viewvc/incubator/ftpserver/trunk/distribution/src/main/assemblies/src.xml?view=diff&rev=509626&p1=incubator/ftpserver/trunk/distribution/src/main/assemblies/source-jar.xml&r1=509245&p2=incubator/ftpserver/trunk/distribution/src/main/assemblies/src.xml&r2=509626
==============================================================================
--- incubator/ftpserver/trunk/distribution/src/main/assemblies/source-jar.xml (original)
+++ incubator/ftpserver/trunk/distribution/src/main/assemblies/src.xml Tue Feb 20 08:12:29 2007
@@ -1,40 +1,49 @@
-<!-- 
-    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.
+<?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</id>
-    <formats>
-        <format>jar</format>
-    </formats>
-    <includeBaseDirectory>false</includeBaseDirectory>
-    <fileSets>
-        <fileSet>
-            <outputDirectory>META-INF</outputDirectory>
-            <includes>
-                <include>README*</include>
-                <include>LICENSE.txt</include>
-                <include>NOTICE.txt</include>
-                <include>DISCLAIMER.txt</include>
-            </includes>
-        </fileSet>
-        <fileSet>
-            <directory>target/sources</directory>
-            <outputDirectory/>
-        </fileSet>
-    </fileSets>
+  <id>src</id>
+  <formats>
+    <format>zip</format>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>..</directory>
+      <outputDirectory>src</outputDirectory>
+      <includes>
+        <include>**/*</include>
+      </includes>
+      <excludes>
+        <exclude>**/target</exclude>
+        <exclude>**/target/**/*</exclude>
+        <exclude>**/.settings</exclude>
+        <exclude>**/.settings/**/*</exclude>
+        <exclude>**/.classpath</exclude>
+        <exclude>**/.project</exclude>
+        <exclude>**/.wtpmodules</exclude>
+        <exclude>**/surefire*</exclude>
+        <exclude>**/cobertura.ser</exclude>
+        <exclude>**/velocity.log</exclude>
+        <exclude>**/derby.log</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
 </assembly>
+