Author: craigmcc
Date: Thu Sep 14 14:34:35 2006
New Revision: 443481

URL: http://svn.apache.org/viewvc?view=rev&rev=443481
Log:
Simple distribution module for the libraries that currently make up the
Shale sandbox.  The web applications will each be packaged individually.

Added:
    shale/sandbox/sandbox-dist/
    shale/sandbox/sandbox-dist/pom.xml   (with props)
    shale/sandbox/sandbox-dist/src/
    shale/sandbox/sandbox-dist/src/assemble/
    shale/sandbox/sandbox-dist/src/assemble/dist.xml   (with props)

Added: shale/sandbox/sandbox-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/shale/sandbox/sandbox-dist/pom.xml?view=auto&rev=443481
==============================================================================
--- shale/sandbox/sandbox-dist/pom.xml (added)
+++ shale/sandbox/sandbox-dist/pom.xml Thu Sep 14 14:34:35 2006
@@ -0,0 +1,91 @@
+<!--
+/*
+ * Copyright 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.
+ *
+ * $Id: pom.xml 433180 2006-08-21 06:50:58Z craigmcc $
+ */
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.shale</groupId>
+        <artifactId>shale-parent</artifactId>
+        <version>1.0.4-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>sandbox-dist</artifactId>
+    <packaging>pom</packaging>
+    <name>Apache Shale Sandbox Distribution</name>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.0.1</version>
+                <configuration>
+                    <descriptors>
+                        <descriptor>src/assemble/dist.xml</descriptor>
+                    </descriptors>
+                    <finalName>shale-sandbox-${version}</finalName>
+                    <outputDirectory>target/assembly/out</outputDirectory>
+                    <workDirectory>target/assembly/work</workDirectory>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.myfaces.maven</groupId>
+                <artifactId>wagon-maven-plugin</artifactId>
+                <version>1.0.2</version>
+                <configuration>
+                    <id>sandbox-nightly-builds</id>
+                    
<url>scpexe://people.apache.org:/www/cvs.apache.org/builds/shale/nightly/sandbox/</url>
+                    <inputDirectory>target/assembly/out</inputDirectory>
+                </configuration>
+          </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.shale</groupId>
+            <artifactId>shale-dialog2</artifactId>
+            <version>${version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.shale</groupId>
+            <artifactId>shale-dialog2-legacy</artifactId>
+            <version>${version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.shale</groupId>
+            <artifactId>shale-dialog2-scxml</artifactId>
+            <version>${version}</version>
+        </dependency>
+
+        <!-- Exclude transitive dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+
+</project>

Propchange: shale/sandbox/sandbox-dist/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: shale/sandbox/sandbox-dist/src/assemble/dist.xml
URL: 
http://svn.apache.org/viewvc/shale/sandbox/sandbox-dist/src/assemble/dist.xml?view=auto&rev=443481
==============================================================================
--- shale/sandbox/sandbox-dist/src/assemble/dist.xml (added)
+++ shale/sandbox/sandbox-dist/src/assemble/dist.xml Thu Sep 14 14:34:35 2006
@@ -0,0 +1,113 @@
+<!--
+/*
+ * Copyright 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.
+ *
+ * $Id: dist.xml 414673 2006-06-15 20:35:29Z craigmcc $
+ */
+-->
+
+<assembly>
+
+    <id>dist</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <includeBaseDirectory>true</includeBaseDirectory>
+
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>lib</outputDirectory>
+            <scope>runtime</scope>
+        </dependencySet>
+    </dependencySets>
+
+    <fileSets>
+
+        <!-- Include top level directory files in the assembly -->
+
+        <fileSet>
+            <directory>..</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>pom.xml</include>
+                <include>*.txt</include>
+            </includes>
+        </fileSet>
+
+        <!-- Include the source code in the assembly -->
+
+        <fileSet>
+            <directory>../src</directory>
+            <outputDirectory>src/</outputDirectory>
+        </fileSet>
+
+        <!-- Include submodule sources in the assembly -->
+
+        <fileSet>
+            <directory>../shale-dialog2</directory>
+            <outputDirectory>shale-dialog2</outputDirectory>
+            <includes>
+                <include>pom.xml</include>
+                <include>*.txt</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>../shale-dialog2-legacy</directory>
+            <outputDirectory>shale-dialog2-legacy</outputDirectory>
+            <includes>
+                <include>pom.xml</include>
+                <include>*.txt</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>../shale-dialog2-scxml</directory>
+            <outputDirectory>shale-dialog2-scxml</outputDirectory>
+            <includes>
+                <include>pom.xml</include>
+                <include>*.txt</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+
+        <!-- Include the website docs in the assembly -->
+
+        <fileSet>
+            <directory>../target/site</directory>
+            <outputDirectory>docs/</outputDirectory>
+        </fileSet>
+
+        <fileSet>
+            <directory>../shale-dialog2/target/site</directory>
+            <outputDirectory>docs/shale-dialog2</outputDirectory>
+        </fileSet>
+
+        <fileSet>
+            <directory>../shale-dialog2-legacy/target/site</directory>
+            <outputDirectory>docs/shale-dialog2-legacy</outputDirectory>
+        </fileSet>
+
+        <fileSet>
+            <directory>../shale-dialog2-scxml/target/site</directory>
+            <outputDirectory>docs/shale-dialog2-scxml</outputDirectory>
+        </fileSet>
+
+    </fileSets>
+
+</assembly>

Propchange: shale/sandbox/sandbox-dist/src/assemble/dist.xml
------------------------------------------------------------------------------
    svn:executable = *


Reply via email to