summaryrefslogtreecommitdiffstats
path: root/sandbox/Hudson
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-10 14:13:52 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-10 14:13:52 +0000
commit1ec6782608ae0402055e26bcf5a4b3713f899926 (patch)
treecae0ed9e2ef12537c38542163ea9d0542e25583c /sandbox/Hudson
parentd0347152fb6fc1da0fd08067283936b380459248 (diff)
Move to sandbox while setting it up to not interfere with the otests
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/Hudson')
-rw-r--r--sandbox/Hudson/Assembly/assembly-test-runner/pom.xml138
-rw-r--r--sandbox/Hudson/Assembly/pom.xml77
2 files changed, 215 insertions, 0 deletions
diff --git a/sandbox/Hudson/Assembly/assembly-test-runner/pom.xml b/sandbox/Hudson/Assembly/assembly-test-runner/pom.xml
new file mode 100644
index 0000000000..f3ec1b344b
--- /dev/null
+++ b/sandbox/Hudson/Assembly/assembly-test-runner/pom.xml
@@ -0,0 +1,138 @@
+<?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-assembly-test-runner</artifactId>
+ <name>Apache Tuscany SCA Specification Tests Runner</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-base</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-webservices</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.19</version>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.oasis-open.sca.assembly</groupId>
+ <artifactId>General_Java</artifactId>
+ <version>1.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.3</version>
+
+ <dependencies>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-trax</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ </dependencies>
+
+ <executions>
+ <execution>
+ <id>copy-files-from-svn</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <ant antfile="../build.xml">
+ <property name="from.dir" value="../sca-assembly/Test_Client/src/main/resources"/>
+ <property name="to.dir" value="src/main/resources"/>
+ <target name="copyResourceDir"/>
+ </ant>
+ <ant antfile="../build.xml">
+ <property name="from.dir" value="../sca-assembly/Test_Client/src/main/java"/>
+ <property name="to.dir" value="src/test/java"/>
+ <target name="copySourceDir"/>
+ </ant>
+ <delete file="src/test/tjava/org/apache/tuscany/sca/otest/TuscanyOSGiRuntimeBridge.java"/>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.3</version>
+ <executions>
+ <execution>
+ <id>add-test-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-test-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>src/test/tjava</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/sandbox/Hudson/Assembly/pom.xml b/sandbox/Hudson/Assembly/pom.xml
new file mode 100644
index 0000000000..6b907d2671
--- /dev/null
+++ b/sandbox/Hudson/Assembly/pom.xml
@@ -0,0 +1,77 @@
+<?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>
+ </parent>
+
+ <artifactId>tuscany-assembly-tests</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany OASIS Assembly Conformance Tests</name>
+
+ <modules>
+ <module>assembly</module>
+ <module>assembly-xml</module>
+ <module>assembly-xsd</module>
+ <module>binding-sca-runtime</module>
+ <module>binding-ws</module>
+ <module>binding-ws-wsdlgen</module>
+ <module>builder</module>
+ <module>common-java</module>
+ <module>common-xml</module>
+ <module>contribution</module>
+ <module>core</module>
+ <module>core-databinding</module>
+ <module>core-spi</module>
+ <module>databinding</module>
+ <module>databinding-jaxb</module>
+ <module>databinding-jaxb-axiom</module>
+ <module>deployment</module>
+ <module>domain-node</module>
+ <module>extensibility</module>
+ <module>extensibility-equinox</module>
+ <module>host-http</module>
+ <module>host-jetty</module>
+ <module>implementation-java</module>
+ <module>implementation-java-runtime</module>
+ <module>interface-java</module>
+ <module>interface-java-jaxws</module>
+ <module>interface-wsdl</module>
+ <module>monitor</module>
+ <module>node-api</module>
+ <module>node-impl</module>
+ <module>node-launcher-equinox</module>
+ <module>policy-security</module>
+ <module>policy-xml-ws</module>
+ <module>sca-api</module>
+ <module>xsd</module>
+
+ <module>base</module>
+
+ <module>sca-assembly</module>
+
+ <module>assembly-test-runner</module>
+
+ </modules>
+
+</project>