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 16:33:18 UTC

svn commit: r831952 - in /incubator/kato/trunk/org.apache.kato: kato.testsuite.scenario.common/pom.xml pom.xml

Author: spoole
Date: Mon Nov  2 16:33:18 2009
New Revision: 831952

URL: http://svn.apache.org/viewvc?rev=831952&view=rev
Log:
Need to split scenario module into two (at least) so we can have a common version compiling at 1.4.2 and others for later versions.  

Modified:
    incubator/kato/trunk/org.apache.kato/kato.testsuite.scenario.common/pom.xml
    incubator/kato/trunk/org.apache.kato/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.testsuite.scenario.common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.testsuite.scenario.common/pom.xml?rev=831952&r1=831951&r2=831952&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.testsuite.scenario.common/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.testsuite.scenario.common/pom.xml Mon Nov  2 16:33:18 2009
@@ -6,8 +6,21 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.kato</groupId>
-  <artifactId>kato.testsuite.scenerio</artifactId>
-  <name>TCK testsuite scenerio </name>
+  <artifactId>kato.testsuite.scenario.common</artifactId>
+  <name>TCK testsuite scenario </name>
   <version>0.0.1-SNAPSHOT</version>
-  <description>Scenerio setup for TCK. Used to create an example system </description>
+  <description>Common scenario setup for TCK. Used to create an example system </description>
+  	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.4</source>
+					<target>1.4</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	
 </project>
\ No newline at end of file

Modified: incubator/kato/trunk/org.apache.kato/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/pom.xml?rev=831952&r1=831951&r2=831952&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/pom.xml Mon Nov  2 16:33:18 2009
@@ -24,7 +24,7 @@
 		<module>kato.cjvmti</module>
 		<module>kato.native</module>
 		<module>kato.distro</module>
-		<module>kato.testsuite.scenerio</module>
+		<module>kato.testsuite.scenario.common</module>
 		
 	</modules>
 	<build>