summaryrefslogtreecommitdiffstats
path: root/java/sca/otest
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-07-30 07:55:52 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-07-30 07:55:52 +0000
commitc571b477611cd6f44def9fb571d29c1c4d3eb7a2 (patch)
tree1c8c43ab88c52e9ba4f514f373297e9e4b0ae515 /java/sca/otest
parent8d4d8c42fed9b65efae67444e94230ff4ae88573 (diff)
Remove the old fixed_version
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@799197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/otest')
-rw-r--r--java/sca/otest/README.txt4
-rw-r--r--java/sca/otest/fixed_version/pom.xml112
2 files changed, 3 insertions, 113 deletions
diff --git a/java/sca/otest/README.txt b/java/sca/otest/README.txt
index 679673cb71..7be11bb2f5 100644
--- a/java/sca/otest/README.txt
+++ b/java/sca/otest/README.txt
@@ -1 +1,3 @@
-Tests are pulled into the fixed_version and currrent subdirectories using svn:externals to extract the tests directly from oasis. As we don't have control over changes in the OASIS build structure, the extraction into the fixed_version will be a selected OASIS svn repository version, intended to be stable (though not necessarily all tests passing) \ No newline at end of file
+Tests are pulled into the fixed_version and currrent subdirectories using svn:externals to extract the tests directly from oasis. As we don't have control over changes in the OASIS build structure, the extraction into the fixed_version will be a selected OASIS svn repository version, intended to be stable (though not necessarily all tests passing)
+
+(the fixed_version directory has been removed for the time being) \ No newline at end of file
diff --git a/java/sca/otest/fixed_version/pom.xml b/java/sca/otest/fixed_version/pom.xml
deleted file mode 100644
index 9c9d075a91..0000000000
--- a/java/sca/otest/fixed_version/pom.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<?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-fixed-version</artifactId>
- <name>Apache Tuscany SCA Specification Tests</name>
-
- <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>
- <build>
- <resources>
- <resource>
- <directory>src/test/resources</directory>
- </resource>
- </resources>
-
- <testResources>
- <testResource>
- <directory>src/main/resources</directory>
- <excludes>
- <exclude>*_Java/**</exclude>
- <exclude>ASM_8004/**</exclude>
- <exclude>ASM_8005/**</exclude>
- </excludes>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-test-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>${basedir}/src/main/resources/General_Java</source>
- <source>${basedir}/src/main/resources/ASM_8001_Java</source>
- <source>${basedir}/src/main/resources/ASM_8004</source>
- <source>${basedir}/src/main/resources/ASM_8005</source>
- </sources>
- </configuration>
- </execution>
- </executions>
-
- </plugin>
- </plugins>
- </build>
-
-</project>