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/02 15:38:07 UTC

svn commit: r831924 - in /incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio: ./ .classpath .project pom.xml src/ src/main/ src/main/java/ src/main/resources/ src/test/ src/test/java/ src/test/resources/

Author: spoole
Date: Mon Nov  2 15:38:06 2009
New Revision: 831924

URL: http://svn.apache.org/viewvc?rev=831924&view=rev
Log:
added new scenerio module to hold testcase setup for TCK

Added:
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.classpath
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.project
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/pom.xml
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/main/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/main/java/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/main/resources/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/test/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/test/java/
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/src/test/resources/

Added: incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.classpath?rev=831924&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.classpath (added)
+++ incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.classpath Mon Nov  2 15:38:06 2009
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Added: incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.project
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.project?rev=831924&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.project (added)
+++ incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/.project Mon Nov  2 15:38:06 2009
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>kato.testsuite.scenerio</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/pom.xml?rev=831924&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/pom.xml (added)
+++ incubator/kato/trunk/org.apache.kato/kato.testsuite.scenerio/pom.xml Mon Nov  2 15:38:06 2009
@@ -0,0 +1,13 @@
+<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">
+  <parent>
+    <artifactId>kato</artifactId>
+    <groupId>org.apache.kato</groupId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.kato</groupId>
+  <artifactId>kato.testsuite.scenerio</artifactId>
+  <name>TCK testsuite scenerio </name>
+  <version>0.0.1-SNAPSHOT</version>
+  <description>Scenerio setup for TCK. Used to create an example system </description>
+</project>
\ No newline at end of file