You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by jz...@apache.org on 2009/08/17 06:11:19 UTC

svn commit: r804846 - in /continuum/branches/continuum-1.3.x/continuum-buildagent: pom.xml src/ src/main/ src/main/assembly/ src/main/assembly/src.xml

Author: jzurbano
Date: Mon Aug 17 04:11:19 2009
New Revision: 804846

URL: http://svn.apache.org/viewvc?rev=804846&view=rev
Log:
[CONTINUUM-2332] - Generate separate source distribution for Continuum Build Agent
Submitted by: Gwen Harold Autencio


Added:
    continuum/branches/continuum-1.3.x/continuum-buildagent/src/
    continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/
    continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/
    continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml   (with props)
Modified:
    continuum/branches/continuum-1.3.x/continuum-buildagent/pom.xml

Modified: continuum/branches/continuum-1.3.x/continuum-buildagent/pom.xml
URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.3.x/continuum-buildagent/pom.xml?rev=804846&r1=804845&r2=804846&view=diff
==============================================================================
--- continuum/branches/continuum-1.3.x/continuum-buildagent/pom.xml (original)
+++ continuum/branches/continuum-1.3.x/continuum-buildagent/pom.xml Mon Aug 17 04:11:19 2009
@@ -35,4 +35,34 @@
     <module>continuum-buildagent-webapp</module>
     <module>continuum-buildagent-jetty</module>
   </modules>
+  
+  <profiles>
+    <profile>
+      <id>release-test</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <inherited>false</inherited>
+            <configuration>
+              <descriptors>
+                <descriptor>src/main/assembly/src.xml</descriptor>
+              </descriptors>
+              <tarLongFileMode>gnu</tarLongFileMode>
+              <finalName>continuum-buildagent-${version}-src</finalName>
+            </configuration>
+            <executions>
+              <execution>
+               <id>make-assembly</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

Added: continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml?rev=804846&view=auto
==============================================================================
--- continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml (added)
+++ continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml Mon Aug 17 04:11:19 2009
@@ -0,0 +1,46 @@
+<?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>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>.</directory>
+      <outputDirectory>/</outputDirectory>
+      <excludes>
+        <exclude>**/target/**</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <directory>../target/maven-shared-archive-resources/META-INF/</directory>
+      <outputDirectory>/</outputDirectory>
+      <includes>
+        <include>NOTICE</include>
+        <include>LICENSE</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>
+

Propchange: continuum/branches/continuum-1.3.x/continuum-buildagent/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native