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 2008/01/06 09:13:59 UTC

svn commit: r609272 [1/3] - in /incubator/tuscany/java/sca/distribution/war: ./ src/ src/main/ src/main/release/ src/main/webapp/ src/main/webapp/WEB-INF/

Author: antelder
Date: Sun Jan  6 00:13:58 2008
New Revision: 609272

URL: http://svn.apache.org/viewvc?rev=609272&view=rev
Log:
start of a war distribution furthering the 'We should be building runtimes of various kinds' discussion on the ML

Added:
    incubator/tuscany/java/sca/distribution/war/   (with props)
    incubator/tuscany/java/sca/distribution/war/pom.xml   (with props)
    incubator/tuscany/java/sca/distribution/war/src/
    incubator/tuscany/java/sca/distribution/war/src/main/
    incubator/tuscany/java/sca/distribution/war/src/main/release/
    incubator/tuscany/java/sca/distribution/war/src/main/release/DISCLAIMER
    incubator/tuscany/java/sca/distribution/war/src/main/release/LICENSE   (with props)
    incubator/tuscany/java/sca/distribution/war/src/main/release/NOTICE   (with props)
    incubator/tuscany/java/sca/distribution/war/src/main/release/README   (with props)
    incubator/tuscany/java/sca/distribution/war/src/main/webapp/
    incubator/tuscany/java/sca/distribution/war/src/main/webapp/WEB-INF/
    incubator/tuscany/java/sca/distribution/war/src/main/webapp/web.xml   (with props)
    incubator/tuscany/java/sca/distribution/war/war.xml   (with props)

Propchange: incubator/tuscany/java/sca/distribution/war/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Jan  6 00:13:58 2008
@@ -0,0 +1,18 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+derby.log
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+.externalToolBuilders
+activemq-data

Added: incubator/tuscany/java/sca/distribution/war/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/war/pom.xml?rev=609272&view=auto
==============================================================================
--- incubator/tuscany/java/sca/distribution/war/pom.xml (added)
+++ incubator/tuscany/java/sca/distribution/war/pom.xml Sun Jan  6 00:13:58 2008
@@ -0,0 +1,90 @@
+<?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.2-incubating-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <name>Apache Tuscany SCA WAR Distribution</name>
+    <artifactId>tuscany-war</artifactId>
+    <packaging>pom</packaging>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>tuscany-runtime-war</artifactId>
+            <version>${pom.version}</version>
+
+ <!-- exclude common unwanted jars, 
+      NOTE: most should be excluded in the module where they're dragged in -->
+            <exclusions>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>javax.servlet</groupId>
+                    <artifactId>servlet-api</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>avalon-framework</groupId>
+                    <artifactId>avalon-framework</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <defaultGoal>package</defaultGoal>
+
+        <plugins>
+
+            <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>war.xml</descriptor>
+                            </descriptors>
+                            <tarLongFileMode>gnu</tarLongFileMode>
+                            <finalName>tuscany</finalName>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+        </plugins>
+
+    </build>
+
+</project>

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

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

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

Added: incubator/tuscany/java/sca/distribution/war/src/main/release/DISCLAIMER
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/distribution/war/src/main/release/DISCLAIMER?rev=609272&view=auto
==============================================================================
--- incubator/tuscany/java/sca/distribution/war/src/main/release/DISCLAIMER (added)
+++ incubator/tuscany/java/sca/distribution/war/src/main/release/DISCLAIMER Sun Jan  6 00:13:58 2008
@@ -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