Author: jsdelfino
Date: Tue Nov 20 16:55:08 2007
New Revision: 596893

URL: http://svn.apache.org/viewvc?rev=596893&view=rev
Log:
Added an assembly to build the updatesite module.

Added:
    incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml   (with 
props)
    incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/
    incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/
    incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/
    
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
   (with props)
Modified:
    incubator/tuscany/java/sca/tools/eclipse/pom.xml
    incubator/tuscany/java/sca/tools/eclipse/site/updatesite/   (props changed)

Modified: incubator/tuscany/java/sca/tools/eclipse/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/pom.xml?rev=596893&r1=596892&r2=596893&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/pom.xml (original)
+++ incubator/tuscany/java/sca/tools/eclipse/pom.xml Tue Nov 20 16:55:08 2007
@@ -40,6 +40,7 @@
                 <module>features/feature</module>
                 <module>plugins/core</module>
                 <module>plugins/runtime</module>
+                <module>site/updatesite</module>
             </modules>
         </profile>
     </profiles>

Propchange: incubator/tuscany/java/sca/tools/eclipse/site/updatesite/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Nov 20 16:55:08 2007
@@ -0,0 +1,16 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+

Added: incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml?rev=596893&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml (added)
+++ incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml Tue Nov 20 
16:55:08 2007
@@ -0,0 +1,88 @@
+<?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-eclipse-tools</artifactId>
+        <version>1.1-incubating-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <packaging>pom</packaging>
+    <artifactId>org.apache.tuscany.sca.updatesite</artifactId>
+    <version>1.1.0.0-incubating-SNAPSHOT</version>
+    <name>Apache Tuscany SCA Eclipse Tools Update Site</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>org.apache.tuscany.sca.core</artifactId>
+            <version>1.1.0.0-incubating-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>org.apache.tuscany.sca.runtime</artifactId>
+            <version>1.1.0.0-incubating-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>org.apache.tuscany.sca.feature</artifactId>
+            <version>1.1.0.0-incubating-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+       <resources>
+          <resource>
+              <directory>${basedir}</directory>
+              <excludes>
+                  <exclude>**/.*/**</exclude>
+                  <exclude>pom.xml</exclude>
+                  <exclude>build.*</exclude>
+              </excludes>
+          </resource>
+       </resources>
+       
+       <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>updatesite-package</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                
<descriptor>src/main/assembly/updatesite.xml</descriptor>
+                            </descriptors>
+                            <tarLongFileMode>gnu</tarLongFileMode>
+                            
<finalName>${artifactId}_${project.version}</finalName>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/tools/eclipse/site/updatesite/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: 
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml?rev=596893&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
 (added)
+++ 
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
 Tue Nov 20 16:55:08 2007
@@ -0,0 +1,59 @@
+<?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></id>
+    <includeBaseDirectory>true</includeBaseDirectory>
+    <formats>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>DISCLAIMER</include>
+                <include>LICENSE</include>
+                <include>NOTICE</include>
+                <include>site.xml</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+        
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>plugins</outputDirectory>
+            <unpack>false</unpack>
+            <includes>
+                
<include>org.apache.tuscany.sca:org.apache.tuscany.sca.core</include>
+                
<include>org.apache.tuscany.sca:org.apache.tuscany.sca.runtime</include>
+            </includes>
+            <scope>runtime</scope>
+        </dependencySet>
+
+        <dependencySet>
+            <outputDirectory>features</outputDirectory>
+            <unpack>false</unpack>
+            <includes>
+                
<include>org.apache.tuscany.sca:org.apache.tuscany.sca.feature</include>
+            </includes>
+            <scope>runtime</scope>
+        </dependencySet>
+    </dependencySets>
+
+</assembly>

Propchange: 
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/src/main/assembly/updatesite.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to