You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2007/03/23 09:49:10 UTC

svn commit: r521627 - in /incubator/tuscany/sandbox/lresende/sca: ./ distribution/ distribution/tss-sample/ distribution/tss-sample/src/ distribution/tss-sample/src/main/ distribution/tss-sample/src/main/assembly/

Author: lresende
Date: Fri Mar 23 01:49:09 2007
New Revision: 521627

URL: http://svn.apache.org/viewvc?view=rev&rev=521627
Log:
Strawman for assembly distribution

Added:
    incubator/tuscany/sandbox/lresende/sca/
    incubator/tuscany/sandbox/lresende/sca/distribution/
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/pom.xml
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/
    incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/tss-sample.xml

Added: incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/pom.xml?view=auto&rev=521627
==============================================================================
--- incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/pom.xml (added)
+++ incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/pom.xml Fri Mar 23 01:49:09 2007
@@ -0,0 +1,89 @@
+<?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.    
+-->
+<project>
+    <parent>
+        <groupId>org.apache.tuscany</groupId>
+        <artifactId>sca</artifactId>
+        <version>1.0-incubating</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tuscany.sca.distribution</groupId>
+    <artifactId>sca</artifactId>
+    <packaging>pom</packaging>
+    <name>Full SCA distribution</name>
+    <description>xxx</description>
+
+    <!-- definition of repositories where the parent pom can be found -->
+    <repositories>
+        <repository>
+            <id>apache.incubator</id>
+            <name>Apache Incubator Repository</name>
+            <url>http://people.apache.org/repo/m2-incubating-repository/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+
+    <modules>
+        <module>../../../../../java/pom/parent</module>
+        <module>../../../../../java/pom/sca</module>
+        <module>../../../../../java/buildtools</module>
+        <module>../../../../../java/spec/sca-api-r1.0</module>
+        <module>../../../../../java/sca/kernel</module>
+        <!--
+        <module>../../../../../java/sca/runtime</module>
+        <module>../../../../../java/sca/services</module>
+        <module>../../../../../java/sca/contrib/discovery</module>
+        <module>../../../../../java/sca/contrib/discovery/jms</module>
+        <module>../../../../../java/sca/console</module>
+	<module>../../../../../java/sca/core-samples</module>
+	<module>../../../../../java/distribution/sca/demo.app</module>
+	<module>../../../../../java/distribution/sca/demo</module>
+	-->
+    </modules>
+    
+    <build>
+	    <defaultGoal>install</defaultGoal>
+	    <plugins>
+		<plugin>
+		    <groupId>org.apache.maven.plugins</groupId>
+		    <artifactId>maven-assembly-plugin</artifactId>
+		    <version>2.2-SNAPSHOT</version>
+		    <executions>
+			<execution>
+			    <phase>package</phase>
+			    <goals>
+				<goal>single</goal>
+			    </goals>
+			</execution>
+		    </executions>
+		    <configuration>
+			<descriptors>
+			    <descriptor>src/main/assembly/sca.xml</descriptor>
+			</descriptors>
+		    </configuration>
+		</plugin>
+	    </plugins>
+    </build>
+</project>

Added: incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/tss-sample.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/tss-sample.xml?view=auto&rev=521627
==============================================================================
--- incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/tss-sample.xml (added)
+++ incubator/tuscany/sandbox/lresende/sca/distribution/tss-sample/src/main/assembly/tss-sample.xml Fri Mar 23 01:49:09 2007
@@ -0,0 +1,49 @@
+<?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>bin</id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <formats>
+        <format>zip</format>
+        <format>tar.gz</format>
+    </formats>
+
+    <fileSets>
+        <!-- include legal and other files -->
+        <fileSet>
+            <outputDirectory>tuscany-sca-${version}</outputDirectory>
+            <includes>
+                <include>*.txt</include>
+                <include>*.htm</include>
+                <include>*.html</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>tuscany-das-${version}/lib</outputDirectory>
+            <includes>
+                <include>org.apache.tuscany.sca:core-samples</include>
+            </includes>
+            <fileMode>644</fileMode>
+        </dependencySet>
+    </dependencySets>
+</assembly>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org