You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2009/09/23 11:48:43 UTC

svn commit: r818026 - in /tuscany/java/sca/otest/newlayout: build.xml pom.xml

Author: slaws
Date: Wed Sep 23 09:48:43 2009
New Revision: 818026

URL: http://svn.apache.org/viewvc?rev=818026&view=rev
Log:
Top level pom and ant script (now only used for copying files). Am looking to see if we can remove the need for the file copying. 

Added:
    tuscany/java/sca/otest/newlayout/build.xml   (with props)
    tuscany/java/sca/otest/newlayout/pom.xml   (with props)

Added: tuscany/java/sca/otest/newlayout/build.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/otest/newlayout/build.xml?rev=818026&view=auto
==============================================================================
--- tuscany/java/sca/otest/newlayout/build.xml (added)
+++ tuscany/java/sca/otest/newlayout/build.xml Wed Sep 23 09:48:43 2009
@@ -0,0 +1,44 @@
+<!--
+ * 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 name="copy-files-from-svn"> 
+    <target name="copySourceDir"> 
+        <sync todir="${to.dir}" verbose="true">
+            <fileset dir="${from.dir}">
+                <include name="**/*.java"/>
+                <exclude name="**/.svn/**/*"/>
+            </fileset>
+        </sync>
+    </target>
+
+    <target name="copyResourceDir"> 
+        <sync todir="${to.dir}" verbose="true">
+            <fileset dir="${from.dir}">
+                <exclude name="**/*.java"/>
+                <exclude name="**/.svn/**/*"/>
+            </fileset>
+        </sync>
+    </target>
+
+
+    <target name="copyFile"> 
+        <copy file="${from.file}"
+              tofile="${to.file}"/>
+    </target>
+
+</project>

Propchange: tuscany/java/sca/otest/newlayout/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/java/sca/otest/newlayout/build.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: tuscany/java/sca/otest/newlayout/build.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: tuscany/java/sca/otest/newlayout/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/otest/newlayout/pom.xml?rev=818026&view=auto
==============================================================================
--- tuscany/java/sca/otest/newlayout/pom.xml (added)
+++ tuscany/java/sca/otest/newlayout/pom.xml Wed Sep 23 09:48:43 2009
@@ -0,0 +1,75 @@
+<?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>2.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>tuscany-otests</artifactId>
+    <name>OASIS SCA Specification Tests</name>
+    <packaging>pom</packaging>
+
+    <repositories>
+        <repository>
+            <id>apache.incubator</id>
+            <url>http://people.apache.org/repo/m2-incubating-repository</url>
+        </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-feature-api</artifactId>
+            <type>pom</type>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-feature-core</artifactId>
+            <type>pom</type>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-feature-webservice</artifactId>
+            <type>pom</type>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+	</dependencies>
+	
+    <modules>
+        <module>sca-assembly</module>
+        <module>tuscany-test-runner</module>
+    </modules>
+
+</project>

Propchange: tuscany/java/sca/otest/newlayout/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/java/sca/otest/newlayout/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: tuscany/java/sca/otest/newlayout/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml