You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2009/01/18 17:01:11 UTC

svn commit: r735480 - in /webservices/commons/trunk/modules/tcpmon: assembly/src.xml pom.xml

Author: veithen
Date: Sun Jan 18 08:01:11 2009
New Revision: 735480

URL: http://svn.apache.org/viewvc?rev=735480&view=rev
Log:
Added Maven 2 src assembly.

Added:
    webservices/commons/trunk/modules/tcpmon/assembly/src.xml   (with props)
Modified:
    webservices/commons/trunk/modules/tcpmon/pom.xml

Added: webservices/commons/trunk/modules/tcpmon/assembly/src.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/assembly/src.xml?rev=735480&view=auto
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/assembly/src.xml (added)
+++ webservices/commons/trunk/modules/tcpmon/assembly/src.xml Sun Jan 18 08:01:11 2009
@@ -0,0 +1,54 @@
+<?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>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>README.txt</include>
+                <include>RELEASE-NOTE.txt</include>
+            </includes>
+            <filtered>true</filtered>
+        </fileSet>
+        <fileSet>
+            <directory>/</directory>
+            <useDefaultExcludes>true</useDefaultExcludes>
+            <excludes>
+                <exclude>**/target/**</exclude>
+                <!-- Filtered files -->
+                <exclude>LICENSE.txt</exclude>
+                <exclude>README.txt</exclude>
+                <exclude>RELEASE-NOTE.txt</exclude>
+                <!-- IDEA project files -->
+                <exclude>*.ipr</exclude>
+                <exclude>*.iws</exclude>
+                <exclude>*.iml</exclude>
+                <!-- Eclipse project files -->
+                <exclude>**/.*</exclude>
+                <exclude>**/.*/**</exclude>
+            </excludes>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: webservices/commons/trunk/modules/tcpmon/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: webservices/commons/trunk/modules/tcpmon/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/pom.xml?rev=735480&r1=735479&r2=735480&view=diff
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/pom.xml (original)
+++ webservices/commons/trunk/modules/tcpmon/pom.xml Sun Jan 18 08:01:11 2009
@@ -106,6 +106,7 @@
                 <configuration>
                     <descriptors>
                         <descriptor>assembly/bin.xml</descriptor>
+                        <descriptor>assembly/src.xml</descriptor>
                     </descriptors>
                 </configuration>
             </plugin>