You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jb...@apache.org on 2006/08/15 00:39:06 UTC

svn commit: r431456 - in /incubator/tuscany/java/distribution/sca/web: NOTICE.txt pom.xml src/main/assembly/servlet.xml

Author: jboynes
Date: Mon Aug 14 15:39:06 2006
New Revision: 431456

URL: http://svn.apache.org/viewvc?rev=431456&view=rev
Log:
restructure web distro to move runtime jars off the webapp classpath

Added:
    incubator/tuscany/java/distribution/sca/web/NOTICE.txt   (with props)
Modified:
    incubator/tuscany/java/distribution/sca/web/pom.xml
    incubator/tuscany/java/distribution/sca/web/src/main/assembly/servlet.xml

Added: incubator/tuscany/java/distribution/sca/web/NOTICE.txt
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/distribution/sca/web/NOTICE.txt?rev=431456&view=auto
==============================================================================
--- incubator/tuscany/java/distribution/sca/web/NOTICE.txt (added)
+++ incubator/tuscany/java/distribution/sca/web/NOTICE.txt Mon Aug 14 15:39:06 2006
@@ -0,0 +1,19 @@
+=========================================================================
+==  NOTICE file corresponding to the section 4 d of                    ==
+==  the Apache License, Version 2.0,                                   ==
+==  in this case for the Apache Tuscany distribution.                  ==
+=========================================================================
+
+This product includes software developed by The Apache Software Foundation
+(http://www.apache.org/).
+
+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.
+  
+Please read the LICENSE.txt file present in the root directory of this distribution.
+

Propchange: incubator/tuscany/java/distribution/sca/web/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/tuscany/java/distribution/sca/web/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/distribution/sca/web/pom.xml?rev=431456&r1=431455&r2=431456&view=diff
==============================================================================
--- incubator/tuscany/java/distribution/sca/web/pom.xml (original)
+++ incubator/tuscany/java/distribution/sca/web/pom.xml Mon Aug 14 15:39:06 2006
@@ -23,7 +23,7 @@
     <artifactId>web</artifactId>
     <version>1.0-SNAPSHOT</version>
     <packaging>pom</packaging>
-    <name>Tuscany Web-Tier Distribution</name>
+    <name>Apache Tuscany Web-Tier Distribution</name>
     <description>Tuscany Distribution for web-tier (servlet) environments.</description>
 
     <properties>
@@ -37,13 +37,8 @@
             <version>${sca.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.tuscany</groupId>
-            <artifactId>launcher</artifactId>
-            <version>${sca.version}</version>
-        </dependency>
-        <dependency>
-             <groupId>org.apache.tuscany.bindings</groupId>
-            <artifactId>axis2</artifactId>
+            <groupId>org.apache.tuscany.runtime</groupId>
+            <artifactId>webapp</artifactId>
             <version>${sca.version}</version>
         </dependency>
     </dependencies>

Modified: incubator/tuscany/java/distribution/sca/web/src/main/assembly/servlet.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/distribution/sca/web/src/main/assembly/servlet.xml?rev=431456&r1=431455&r2=431456&view=diff
==============================================================================
--- incubator/tuscany/java/distribution/sca/web/src/main/assembly/servlet.xml (original)
+++ incubator/tuscany/java/distribution/sca/web/src/main/assembly/servlet.xml Mon Aug 14 15:39:06 2006
@@ -37,14 +37,21 @@
     </fileSets>
 
     <dependencySets>
-        <!-- libraries needed to boot the runtime -->
+        <!-- libraries to add to the webapp classpath -->
         <dependencySet>
-            <outputDirectory>lib</outputDirectory>
+            <outputDirectory>WEB-INF/lib</outputDirectory>
             <includes>
                 <include>org.osoa:sca-api</include>
-                <include>org.apache.tuscany:launcher</include>
+                <include>org.apache.tuscany.runtime:webapp</include>
+            </includes>
+            <fileMode>644</fileMode>
+        </dependencySet>
+
+        <!-- libraries needed to boot the runtime -->
+        <dependencySet>
+            <outputDirectory>WEB-INF/tuscany/boot</outputDirectory>
+            <includes>
                 <include>org.apache.tuscany:core</include>
-                <include>org.apache.tuscany.bindings:axis2</include>
             </includes>
             <fileMode>644</fileMode>
         </dependencySet>



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