Author: gnodet
Date: Mon May 15 07:23:34 2006
New Revision: 406634
URL: http://svn.apache.org/viewcvs?rev=406634&view=rev
Log:
Add a global source distribution and upgrade to released maven-assembly-plugin
Added:
incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/src.xml
Modified:
incubator/servicemix/trunk/servicemix-assembly/pom.xml
Modified: incubator/servicemix/trunk/servicemix-assembly/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-assembly/pom.xml?rev=406634&r1=406633&r2=406634&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-assembly/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-assembly/pom.xml Mon May 15 07:23:34 2006
@@ -228,19 +228,31 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.1</version>
<executions>
<execution>
<id>bin</id>
<phase>package</phase>
<goals>
- <goal>assembly</goal>
+ <goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
+ </configuration>
+ </execution>
+ <execution>
+ <id>src</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
</configuration>
</execution>
</executions>
Added: incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/src.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/src.xml?rev=406634&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/src.xml (added)
+++ incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/src.xml Mon May 15 07:23:34
2006
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright 2005-2006 The Apache Software Foundation
+
+ Licensed 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>
+ <fileSets>
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>src</outputDirectory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ <excludes>
+ <exclude>**/target</exclude>
+ <exclude>**/target/**/*</exclude>
+ <exclude>**/build</exclude>
+ <exclude>**/build/**/*</exclude>
+ <exclude>**/.settings</exclude>
+ <exclude>**/.classpath</exclude>
+ <exclude>**/.project</exclude>
+ <exclude>**/.wtpmodules</exclude>
+ <exclude>**/surefire*</exclude>
+ <exclude>**/cobertura.ser</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>
|