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

svn commit: r533480 [1/2] - in /incubator/tuscany/java/sca/distribution: ./ bundle/ manifest/ src/ src/main/ src/main/assembly/ src/main/release/ src/main/xsl/

Author: antelder
Date: Sun Apr 29 00:59:22 2007
New Revision: 533480

URL: http://svn.apache.org/viewvc?view=rev&rev=533480
Log:
Start adding modules to build the Tuscany SCA distributions

Added:
    incubator/tuscany/java/sca/distribution/   (with props)
    incubator/tuscany/java/sca/distribution/bundle/   (with props)
    incubator/tuscany/java/sca/distribution/bundle/pom.xml   (with props)
    incubator/tuscany/java/sca/distribution/manifest/   (with props)
    incubator/tuscany/java/sca/distribution/manifest/pom.xml   (with props)
    incubator/tuscany/java/sca/distribution/pom.xml   (with props)
    incubator/tuscany/java/sca/distribution/src/
    incubator/tuscany/java/sca/distribution/src/main/
    incubator/tuscany/java/sca/distribution/src/main/assembly/
    incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml   (with props)
    incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml   (with props)
    incubator/tuscany/java/sca/distribution/src/main/release/
    incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt   (with props)
    incubator/tuscany/java/sca/distribution/src/main/release/DISCLAIMER
    incubator/tuscany/java/sca/distribution/src/main/release/LICENSE   (with props)
    incubator/tuscany/java/sca/distribution/src/main/release/NOTICE   (with props)
    incubator/tuscany/java/sca/distribution/src/main/release/release_notes.txt   (with props)
    incubator/tuscany/java/sca/distribution/src/main/xsl/
    incubator/tuscany/java/sca/distribution/src/main/xsl/srcbuild_paths.xsl   (with props)

Propchange: incubator/tuscany/java/sca/distribution/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr 29 00:59:22 2007
@@ -0,0 +1,14 @@
+target
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+

Propchange: incubator/tuscany/java/sca/distribution/bundle/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr 29 00:59:22 2007
@@ -0,0 +1,14 @@
+target
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+

Added: incubator/tuscany/java/sca/distribution/bundle/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/bundle/pom.xml?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/bundle/pom.xml (added)
+++ incubator/tuscany/java/sca/distribution/bundle/pom.xml Sun Apr 29 00:59:22 2007
@@ -0,0 +1,301 @@
+<?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>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-sca</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>tuscany-bundle</artifactId>
+    <name>Apache Tuscany Bundle Jar</name>
+    <packaging>jar</packaging>
+
+    <properties>
+        <maven.test.skip>true</maven.test.skip>
+        <tuscany.version>${pom.version}</tuscany.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly-java-dsl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-rmi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws-axis2</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany</groupId>
+            <artifactId>commonj-api</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-contribution</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-contribution-impl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-databinding</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-spi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-spring</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-axiom</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-jaxb</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-sdo</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-sdo-axiom</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-host-spi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http-jetty</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http-tomcat</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-script</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-policy</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-rmi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osoa</groupId>
+            <artifactId>sca-api</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+
+<!-- don't want the tools in the bundle jar? 
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-wsdl2java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-java2wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-maven-java2wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-maven-wsdl2java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+-->
+
+    </dependencies>
+
+	<build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+
+		<plugins>
+
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>shade-maven-plugin</artifactId>
+				<version>1.0-alpha-7</version>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+                                        <goal>shade</goal>
+						</goals>
+						<configuration>
+						    <shadedGroupFilter>org.apache.tuscany</shadedGroupFilter>
+						    <shadedArtifactAttached>false</shadedArtifactAttached>
+                                        
+                                        <artifactSet>
+                                           <excludes>
+                                              <exclude>org.apache.tuscany.sdo:tuscany-sdo-impl</exclude>
+                                           </excludes>
+                                        </artifactSet>
+
+                                        <transformers>
+                                           <transformer implementation="org.codehaus.mojo.shade.resource.AppendingTransformer">
+                                              <resource>META-INF/services/org.apache.tuscany.core.ModuleActivator</resource>
+                                           </transformer>
+                                        </transformers>
+
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+
+</project>

Propchange: incubator/tuscany/java/sca/distribution/bundle/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/bundle/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/distribution/bundle/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: incubator/tuscany/java/sca/distribution/manifest/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr 29 00:59:22 2007
@@ -0,0 +1,14 @@
+target
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+

Added: incubator/tuscany/java/sca/distribution/manifest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/manifest/pom.xml?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/manifest/pom.xml (added)
+++ incubator/tuscany/java/sca/distribution/manifest/pom.xml Sun Apr 29 00:59:22 2007
@@ -0,0 +1,278 @@
+<?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>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-sca</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>tuscany-sca-manifest</artifactId>
+    <name>Apache Tuscany Manifest Jar</name>
+
+    <properties>
+        <maven.test.skip>true</maven.test.skip>
+        <tuscany.version>${pom.version}</tuscany.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly-java-dsl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-assembly-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-rmi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws-axis2</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-binding-ws-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany</groupId>
+            <artifactId>commonj-api</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-contribution</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-contribution-impl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-databinding</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-spi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-core-spring</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-axiom</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-jaxb</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-sdo</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-databinding-sdo-axiom</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-host-spi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http-jetty</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-http-tomcat</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-java-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-interface-wsdl-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java-xml</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-implementation-script</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-java2wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-maven-java2wsdl</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-maven-wsdl2java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-policy</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-rmi</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osoa</groupId>
+            <artifactId>sca-api</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-wsdl2java</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+     </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addClasspath>true</addClasspath>
+                        </manifest>
+                        <manifestEntries>
+                            <!-- Add an entry for the renamed bundle jar in the distro -->
+                            <Class-Path>tuscany-sca-${pom.version}.jar</Class-Path>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: incubator/tuscany/java/sca/distribution/manifest/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/manifest/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/distribution/manifest/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/pom.xml?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/pom.xml (added)
+++ incubator/tuscany/java/sca/distribution/pom.xml Sun Apr 29 00:59:22 2007
@@ -0,0 +1,177 @@
+<?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>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-sca</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>tuscany-distribution</artifactId>
+    <name>Apache Tuscany Distribution</name>
+    <packaging>pom</packaging>
+
+    <properties>
+        <maven.test.skip>true</maven.test.skip>
+        <tuscany.version>${pom.version}</tuscany.version>
+    </properties>
+
+    <modules>
+        <module>bundle</module>
+        <module>manifest</module>
+    </modules>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-bundle</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>unpack-javadoc</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${project.build.directory}/javadoc</outputDirectory>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.osoa</groupId>
+                                    <artifactId>sca-api</artifactId>
+                                    <classifier>javadoc</classifier>
+                                    <version>${pom.version}</version>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-ant-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>generate-sources</id>
+                        <phase>generate-sources</phase>
+
+                        <goals>
+                            <goal>ant</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>distribution-package</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>src/main/assembly/bin.xml</descriptor>
+                                <descriptor>src/main/assembly/src.xml</descriptor>
+                            </descriptors>
+                            <tarLongFileMode>gnu</tarLongFileMode>
+                            <finalName>tuscany-sca-${pom.version}</finalName>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+
+                <dependencies>
+                    <dependency>
+                        <groupId>ant</groupId>
+                        <artifactId>ant-trax</artifactId>
+                        <version>1.6.5</version>
+                    </dependency>
+                </dependencies>
+
+                <executions>
+                    <execution>
+                        <id>process-sources-xsl</id>
+                        <phase>process-sources</phase>
+                        <configuration>
+                            <tasks>
+                                <xslt style="${basedir}/src/main/xsl/srcbuild_paths.xsl" in="build.xml" out="${basedir}/target/srcbuild_paths.xml">
+                                </xslt>
+
+                                <pathconvert property="cp" refid="maven.runtime.classpath" />
+                                <condition property="output.cp" value="set TUSCANY_CLASSPATH=${cp}">
+                                    <os family="windows" />
+                                </condition>
+                                <condition property="output.ext" value=".bat">
+                                    <os family="windows" />
+                                </condition>
+                                <property name="output.cp" value="export TUSCANY_CLASSPATH=${cp}" />
+                                <property name="output.ext" value="" />
+
+                                <echo file="${basedir}/target/srcbuild_env${output.ext}" message="${output.cp}" />
+                                <echo file="${basedir}/target/version.properties" message="tuscany.version=${pom.version}" />
+                                <!-- copy file="${basedir}/src/main/assembly/jbi.xml" tofile="${basedir}/target/jbi.xml" overwrite="yes">
+                                    <filterset>
+                                        <filter token="TUSCANY_VERSION" value="${pom.version}" />
+                                    </filterset>
+                                </copy -->
+                                <delete file="build.xml" />
+                            </tasks>
+
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+
+    </build>
+
+</project>

Propchange: incubator/tuscany/java/sca/distribution/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/distribution/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml (added)
+++ incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml Sun Apr 29 00:59:22 2007
@@ -0,0 +1,201 @@
+<?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 typically identifies the "type" (src vs bin etc) of the assembly -->
+	<id></id>
+	<includeBaseDirectory>false</includeBaseDirectory>
+	<formats>
+          <format>dir</format>
+          <format>tar.gz</format>
+          <format>zip</format>
+	</formats>
+
+	<fileSets>
+		<fileSet>
+			<directory>src/main/release</directory>
+			<outputDirectory>tuscany-sca-${tuscany.version}</outputDirectory>
+			<includes>
+				<include>DISCLAIMER</include>
+				<include>LICENSE</include>
+				<include>NOTICE</include>
+				<include>release_notes.txt</include>
+			</includes>
+		</fileSet>
+		<fileSet>
+			<directory>target/maven-shared-archive-resources/META-INF</directory>
+			<outputDirectory>tuscany-sca-${tuscany.version}</outputDirectory>
+			<includes>
+				<include>NOTICE</include>
+			</includes>
+		</fileSet>
+		<fileSet>
+			<directory>manifest/target</directory>
+			<outputDirectory>tuscany-sca-${tuscany.version}/lib</outputDirectory>
+			<includes>
+				<include>tuscany-sca-manifest-${tuscany.version}.jar</include>
+			</includes>
+		</fileSet>
+		<fileSet>
+			<directory>target/javadoc</directory>
+			<outputDirectory>tuscany-sca-${tuscany.version}/docs/sca-api</outputDirectory>
+			<includes>
+				<include>**/*</include>
+			</includes>
+		</fileSet>
+	</fileSets>
+
+	<dependencySets>
+            <dependencySet>
+                <outputDirectory>tuscany-sca-${tuscany.version}/modules</outputDirectory>
+		    <unpack>false</unpack>
+		    <includes>
+                    <include>include>org.apache.tuscany:assembly</include>
+                    <include>org.apache.tuscany.sca:tuscany-assembly-java-dsl</include>
+                    <include>org.apache.tuscany.sca:tuscany-assembly-xml</include>
+                    <include>org.apache.tuscany.sca:tuscany-binding-rmi</include>
+                    <include>org.apache.tuscany.sca:tuscany-binding-ws</include>
+                    <include>org.apache.tuscany.sca:tuscany-binding-ws-axis2</include>
+                    <include>org.apache.tuscany.sca:tuscany-binding-ws-xml</include>
+                    <include>org.apache.tuscany.sca:tuscany-commonj-api</include>
+                    <include>org.apache.tuscany.sca:tuscany-contribution</include>
+                    <include>org.apache.tuscany.sca:tuscany-contribution-impl</include>
+                    <include>org.apache.tuscany.sca:tuscany-core</include>
+                    <include>org.apache.tuscany.sca:tuscany-core-databinding</include>
+                    <include>org.apache.tuscany.sca:tuscany-core-spi</include>
+                    <include>org.apache.tuscany.sca:tuscany-core-spring</include>
+                    <include>org.apache.tuscany.sca:tuscany-databinding</include>
+                    <include>org.apache.tuscany.sca:tuscany-databinding-axiom</include>
+                    <include>org.apache.tuscany.sca:tuscany-databinding-jaxb</include>
+                    <include>org.apache.tuscany.sca:tuscany-databinding-sdo</include>
+                    <include>org.apache.tuscany.sca:tuscany-databinding-sdo-axiom</include>    
+                    <include>org.apache.tuscany.sca:tuscany-host-embedded</include>
+                    <include>org.apache.tuscany.sca:tuscany-host-spi</include>
+                    <include>org.apache.tuscany.sca:tuscany-http</include>
+                    <include>org.apache.tuscany.sca:tuscany-http-jetty</include>
+                    <include>org.apache.tuscany.sca:tuscany-http-tomcat</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface-java</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface-java-xml</include>    
+                    <include>org.apache.tuscany.sca:tuscany-interface-java-runtime</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface-wsdl</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface-wsdl-xml</include>
+                    <include>org.apache.tuscany.sca:tuscany-interface-wsdl-runtime</include>
+                    <include>org.apache.tuscany.sca:tuscany-implementation-java</include>
+                    <include>org.apache.tuscany.sca:tuscany-implementation-java-xml</include>
+                    <include>org.apache.tuscany.sca:tuscany-implementation-java-runtime</include>
+                    <include>org.apache.tuscany.sca:tuscany-implementation-script</include>
+                    <include>org.apache.tuscany.sca:tuscany-java2wsdl</include>
+                    <include>org.apache.tuscany.sca:tuscany-maven-java2wsdl</include>
+                    <include>org.apache.tuscany.sca:tuscany-maven-wsdl2java</include>
+                    <include>org.apache.tuscany.sca:tuscany-policy</include>
+                    <include>org.apache.tuscany.sca:tuscany-rmi</include>
+                    <include>org.apache.tuscany.sca:tuscany-sca-api</include>
+                    <include>org.apache.tuscany.sca:tuscany-wsdl2java</include>
+		    </includes>
+		    <scope>runtime</scope>
+		</dependencySet>
+
+		<dependencySet>
+		    <outputDirectory>tuscany-sca-${tuscany.version}/lib</outputDirectory>
+		    <unpack>false</unpack>
+			<excludes>
+                    <exclude>org.apache.tuscany.sca:tuscany-bundle</exclude>
+                    <exclude>org.apache.tuscany.sdo:tuscany-sdo-impl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-assembly</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-assembly-java-dsl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-assembly-xml</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-binding-rmi</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-binding-ws</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-binding-ws-axis2</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-binding-ws-xml</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-commonj-api</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-contribution</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-contribution-impl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-core</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-core-databinding</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-core-spi</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-core-spring</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-databinding</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-databinding-axiom</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-databinding-jaxb</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-databinding-sdo</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-databinding-sdo-axiom</exclude>    
+                    <exclude>org.apache.tuscany.sca:tuscany-host-embedded</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-host-spi</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-http</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-http-jetty</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-http-tomcat</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-java</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-java-xml</exclude>    
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-java-runtime</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-wsdl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-wsdl-xml</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-interface-wsdl-runtime</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-implementation-java</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-implementation-java-xml</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-implementation-java-runtime</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-implementation-script</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-java2wsdl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-maven-java2wsdl</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-maven-wsdl2java</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-policy</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-rmi</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-sca-api</exclude>
+                    <exclude>org.apache.tuscany.sca:tuscany-wsdl2java</exclude>
+                  </excludes>
+                  <scope>runtime</scope>
+		</dependencySet>
+
+		<dependencySet>
+		    <outputDirectory>tuscany-sca-${tuscany.version}/lib</outputDirectory>
+		    <unpack>false</unpack>
+		    <includes>
+		        <include>org.apache.tuscany.sca:tuscany-bundle</include>
+		    </includes>
+		    <scope>runtime</scope>
+		    <outputFileNameMapping>tuscany-sca-${version}.${extension}</outputFileNameMapping>
+		</dependencySet>
+
+<!--
+            <dependencySet>
+                <outputDirectory>tuscany-sca-${tuscany.version}/modules</outputDirectory>
+		    <unpack>false</unpack>
+		    <includes>
+		        <include>org.apache.tuscany.sca:*</include>
+		    </includes>
+                <excludes>
+                   <exclude>org.apache.tuscany.sca:tuscany-bundle</exclude>
+                </excludes>
+		    <scope>runtime</scope>
+		</dependencySet>
+		<dependencySet>
+			<outputDirectory>tuscany-sca-${tuscany.version}/lib</outputDirectory>
+			<unpack>false</unpack>
+			<excludes>
+		        <exclude>org.apache.tuscany.sca:*</exclude>
+                  </excludes>
+			<scope>runtime</scope>
+		</dependencySet>
+-->		
+
+	</dependencySets>
+	
+</assembly>

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml (added)
+++ incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml Sun Apr 29 00:59:22 2007
@@ -0,0 +1,76 @@
+<?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 typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id>src</id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <formats>
+        <format>tar.gz</format>
+	<format>zip</format>
+    </formats>
+
+    <fileSets>
+	 <fileSet>
+             <directory>src/main/release</directory>
+	     <outputDirectory>tuscany-sca-${tuscany.version}-src</outputDirectory>
+	     <includes>
+             <include>DISCLAIMER</include>
+		 <include>LICENSE</include>
+		 <include>NOTICE</include>
+		 <include>BUILDING.txt</include>
+             </includes>
+	 </fileSet>
+         <fileSet>
+             <directory>target/maven-shared-archive-resources/META-INF</directory>
+             <outputDirectory>tuscany-sca-${tuscany.version}-src</outputDirectory>
+             <includes>
+                 <include>NOTICE</include>
+             </includes>
+         </fileSet>
+	 <fileSet>
+	     <directory>..</directory>
+	     <outputDirectory>tuscany-sca-${tuscany.version}-src</outputDirectory>
+	     <includes>
+	         <include>**/*</include>
+           </includes>
+           <excludes>
+		 <exclude>contrib</exclude>
+		 <exclude>contrib/**/*</exclude>
+		 <exclude>doc</exclude>
+		 <exclude>doc/**/*</exclude>
+             <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>
+		 <exclude>bin</exclude>
+		 <exclude>bin/*</exclude>
+		 <exclude>**/var/journal</exclude>
+		 <exclude>**/build.out*</exclude>
+		 <exclude>velocity.log</exclude>
+          </excludes>
+	 </fileSet>
+     </fileSets>
+</assembly>

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt (added)
+++ incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt Sun Apr 29 00:59:22 2007
@@ -0,0 +1,32 @@
+Building Apache Tuscany
+=======================
+
+Initial Setup
+-------------
+
+1) Install J2SE 5.0 SDK, which can be downloaded from 
+   http://java.sun.com/j2se/1.5.0/download.jsp. Use version of 1.5.0_06 JDK.
+
+2) Make sure that your JAVA_HOME environment variable is set to the newly installed 
+   JDK location, and that your PATH includes %JAVA_HOME%\bin (windows) or 
+   $JAVA_HOME$/bin (unix).
+
+3) Install Maven 2.0.6, which can be downloaded from 
+   http://maven.apache.org/download.html. Make sure that your PATH includes 
+   the MVN_HOME/bin directory. 
+
+
+Building
+--------
+
+1) Change to the top level directory of Apache Tuscany source distribution.
+2) Run
+	$> mvn.
+   This will compile Apache Tuscany and run all of the tests in the source
+   distribution. 
+
+   Depending on the load of remote Maven 2.0 repositories, you may have 
+   to run "mvn" several times utill the required dependencies are 
+   all located in your local maven repository. It usually takes some time for 
+   maven to download required dependencies in the first build.
+

Propchange: incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/distribution/src/main/release/BUILDING.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/tuscany/java/sca/distribution/src/main/release/DISCLAIMER
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/src/main/release/DISCLAIMER?view=auto&rev=533480
==============================================================================
--- incubator/tuscany/java/sca/distribution/src/main/release/DISCLAIMER (added)
+++ incubator/tuscany/java/sca/distribution/src/main/release/DISCLAIMER Sun Apr 29 00:59:22 2007
@@ -0,0 +1,7 @@
+Apache Tuscany is an effort undergoing incubation at The Apache Software
+Foundation (ASF), sponsored by the Apache Web Services PMC. Incubation is
+required of all newly accepted projects until a further review indicates that
+the infrastructure, communications, and decision making process have stabilized
+in a manner consistent with other successful ASF projects. While incubation
+status is not necessarily a reflection of the completeness or stability of the
+code, it does indicate that the project has yet to be fully endorsed by the ASF.
\ 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