Author: foconer
Date: Sat Aug 5 00:07:09 2006
New Revision: 428970
URL: http://svn.apache.org/viewvc?rev=428970&view=rev
Log:
AMQ-859: nightly snapshots to include source distro.
Added src-bin.xml and modified assembly/pom.xml to include a build for creating
the source distro.
Added:
incubator/activemq/trunk/assembly/src/main/descriptors/src-bin.xml
Modified:
incubator/activemq/trunk/assembly/pom.xml
Modified: incubator/activemq/trunk/assembly/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/activemq/trunk/assembly/pom.xml?rev=428970&r1=428969&r2=428970&view=diff
==============================================================================
--- incubator/activemq/trunk/assembly/pom.xml (original)
+++ incubator/activemq/trunk/assembly/pom.xml Sat Aug 5 00:07:09 2006
@@ -320,7 +320,7 @@
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
- </executions>
+ </executions>
</plugin>
<!-- plugin>
<groupId>org.apache.activemq</groupId>
@@ -333,5 +333,33 @@
</plugin -->
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>assembly-src</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.1</version>
+ <executions>
+ <execution>
+ <id>src</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/descriptors/src-bin.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
Added: incubator/activemq/trunk/assembly/src/main/descriptors/src-bin.xml
URL:
http://svn.apache.org/viewvc/incubator/activemq/trunk/assembly/src/main/descriptors/src-bin.xml?rev=428970&view=auto
==============================================================================
--- incubator/activemq/trunk/assembly/src/main/descriptors/src-bin.xml (added)
+++ incubator/activemq/trunk/assembly/src/main/descriptors/src-bin.xml Sat Aug
5 00:07:09 2006
@@ -0,0 +1,55 @@
+<?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>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>**/data</exclude>
+ <exclude>**/data/**/*</exclude>
+ <exclude>**/activemq-data</exclude>
+ <exclude>**/activemq-data/**/*</exclude>
+ <exclude>**/.settings</exclude>
+ <exclude>**/.settings/**/*</exclude>
+ <exclude>**/eclipse-classes</exclude>
+ <exclude>**/eclipse-classes/**/*</exclude>
+ <exclude>**/.classpath</exclude>
+ <exclude>**/.project</exclude>
+ <exclude>**/.wtpmodules</exclude>
+ <exclude>**/surefire*</exclude>
+ <exclude>**/cobertura.ser</exclude>
+ <exclude>**/*.iml</exclude>
+ <exclude>**/*.ipr</exclude>
+ <exclude>**/*.iws</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>