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 15:12:28 UTC

svn commit: r735460 - in /webservices/commons/trunk/modules/tcpmon: assembly/ assembly/bin.xml modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml pom.xml

Author: veithen
Date: Sun Jan 18 06:12:28 2009
New Revision: 735460

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

Added:
    webservices/commons/trunk/modules/tcpmon/assembly/
    webservices/commons/trunk/modules/tcpmon/assembly/bin.xml   (with props)
Modified:
    webservices/commons/trunk/modules/tcpmon/modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml
    webservices/commons/trunk/modules/tcpmon/pom.xml

Added: webservices/commons/trunk/modules/tcpmon/assembly/bin.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/assembly/bin.xml?rev=735460&view=auto
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/assembly/bin.xml (added)
+++ webservices/commons/trunk/modules/tcpmon/assembly/bin.xml Sun Jan 18 06:12:28 2009
@@ -0,0 +1,81 @@
+<?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>bin</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>scripts</directory>
+            <outputDirectory>build</outputDirectory>
+            <filtered>true</filtered>
+        </fileSet>
+        <fileSet>
+            <directory>target/site</directory>
+            <outputDirectory>docs</outputDirectory>
+        </fileSet>
+    </fileSets>
+    <moduleSets>
+        <moduleSet>
+            <includes>
+                <include>*:tcpmon-ui</include>
+            </includes>
+            <binaries>
+                <attachmentClassifier>jar-with-dependencies</attachmentClassifier>
+                <outputDirectory>build</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>false</includeDependencies>
+                <outputFileNameMapping>tcpmon-${module.version}.${module.extension}</outputFileNameMapping>
+            </binaries>
+        </moduleSet>
+        <moduleSet>
+            <includes>
+                <include>*:tcpmon-eclipse-plugin</include>
+            </includes>
+            <binaries>
+                <outputDirectory>build</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>false</includeDependencies>
+            </binaries>
+        </moduleSet>
+        <moduleSet>
+            <includes>
+                <include>*:tcpmon-idea-plugin</include>
+            </includes>
+            <binaries>
+                <attachmentClassifier>plugin-assembly</attachmentClassifier>
+                <outputDirectory>build</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>false</includeDependencies>
+                <outputFileNameMapping>${module.artifactId}-${module.version}.${module.extension}</outputFileNameMapping>
+            </binaries>
+        </moduleSet>
+    </moduleSets>
+</assembly>

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

Modified: webservices/commons/trunk/modules/tcpmon/modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml?rev=735460&r1=735459&r2=735460&view=diff
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml (original)
+++ webservices/commons/trunk/modules/tcpmon/modules/tcpmon-idea-plugin/src/main/assembly/plugin-assembly.xml Sun Jan 18 06:12:28 2009
@@ -17,6 +17,7 @@
   ~ under the License.
   -->
 <assembly>
+    <id>plugin-assembly</id>
     <includeBaseDirectory>false</includeBaseDirectory>
     <formats>
         <format>zip</format>

Modified: webservices/commons/trunk/modules/tcpmon/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/pom.xml?rev=735460&r1=735459&r2=735460&view=diff
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/pom.xml (original)
+++ webservices/commons/trunk/modules/tcpmon/pom.xml Sun Jan 18 06:12:28 2009
@@ -100,6 +100,15 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <inherited>false</inherited>
+                <configuration>
+                    <descriptors>
+                        <descriptor>assembly/bin.xml</descriptor>
+                    </descriptors>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <reporting>