You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/11/17 15:11:33 UTC

svn commit: r881323 - in /incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150: ./ src/main/java/org/kato/tck/testsuite/scenario150/ src/test/ant/ src/test/java/org/kato/tck/testsuite/scenario150/ target/

Author: spoole
Date: Tue Nov 17 15:11:33 2009
New Revision: 881323

URL: http://svn.apache.org/viewvc?rev=881323&view=rev
Log:
added initial 150 scenario config

Added:
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/ScenarioLauncher150.java
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/test.xml
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/target/
Removed:
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/App.java
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/java/org/kato/tck/testsuite/scenario150/
Modified:
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/pom.xml?rev=881323&r1=881322&r2=881323&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/pom.xml Tue Nov 17 15:11:33 2009
@@ -1,4 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<!--
+ * 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.
+-->
+
   <parent>
     <artifactId>kato</artifactId>
     <groupId>org.apache.kato</groupId>
@@ -7,15 +26,61 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.kato</groupId>
   <artifactId>kato.tck.testsuite.scenario.150</artifactId>
-  <name>kato.tck.testsuite.scenario.150</name>
+  <name>TCK testsuite scenario 1.5 </name>
   <version>M1-incubating</version>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
\ No newline at end of file
+  <description>Scenario setup for TCK. Used to create an example system suitable for running on a 1.5 JVM</description>
+  	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<version>1.3</version>
+				<executions>
+					<execution>
+						<id>compile</id>
+						<phase>test</phase>
+						<configuration>
+							<tasks>
+								<ant antfile="test.xml" dir="src/test/ant">
+									<property name="path" refid="maven.runtime.classpath" />
+								</ant>
+							</tasks>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+				</executions>
+				<dependencies>
+					<dependency>
+            			<groupId>ant</groupId>
+            			<artifactId>ant-trax</artifactId>
+            			<version>1.6.5</version>
+          			</dependency>    
+        			
+				<dependency>
+  			<groupId>org.apache.kato</groupId>
+  			<artifactId>kato.anttasks</artifactId>
+  			<version>M1-incubating</version>
+  		</dependency>
+				</dependencies>
+				</plugin>
+		</plugins>
+	</build>
+  	<dependencies>
+  		<dependency>
+  			<groupId>org.apache.kato</groupId>
+  			<artifactId>kato.tck.harness</artifactId>
+  			<version>M1-incubating</version>
+  		</dependency>
+  	</dependencies>
+	
+</project>

Added: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/ScenarioLauncher150.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/ScenarioLauncher150.java?rev=881323&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/ScenarioLauncher150.java (added)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/kato/tck/testsuite/scenario150/ScenarioLauncher150.java Tue Nov 17 15:11:33 2009
@@ -0,0 +1,14 @@
+package org.kato.tck.testsuite.scenario150;
+
+
+public class ScenarioLauncher150  {
+
+	
+	public ScenarioLauncher150() {
+		
+	
+	}
+	
+
+
+}

Added: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/test.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/test.xml?rev=881323&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/test.xml (added)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/test/ant/test.xml Tue Nov 17 15:11:33 2009
@@ -0,0 +1,13 @@
+<project default="test">
+	
+	<taskdef resource="org/apache/kato/anttasks/anttasks.properties">
+			<classpath path="${path}" />
+		</taskdef>
+	<target name="test">
+		<tcksetup>
+			<classpath path="${path}" />
+			<scenario name="150"/>
+		</tcksetup>
+		
+	</target>
+</project>
\ No newline at end of file