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/16 13:03:10 UTC

svn commit: r880733 - in /incubator/kato/trunk/org.apache.kato: ./ kato.common.142/ kato.common.142/.settings/ kato.common.142/src/ kato.common.142/src/main/ kato.common.142/src/main/java/ kato.common.142/src/main/java/org/ kato.common.142/src/main/jav...

Author: spoole
Date: Mon Nov 16 13:03:10 2009
New Revision: 880733

URL: http://svn.apache.org/viewvc?rev=880733&view=rev
Log:
introduced new common module to hold code compiled at 1.4

Added:
    incubator/kato/trunk/org.apache.kato/kato.common.142/
    incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath   (with props)
    incubator/kato/trunk/org.apache.kato/kato.common.142/.project   (with props)
    incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/
    incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs   (with props)
    incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs   (with props)
    incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml   (with props)
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/main/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/main/java/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/main/java/org/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/main/java/org/kato/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/main/java/org/kato/common142/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/test/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/test/java/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/test/java/org/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/test/java/org/kato/
    incubator/kato/trunk/org.apache.kato/kato.common.142/src/test/java/org/kato/common142/
Modified:
    incubator/kato/trunk/org.apache.kato/pom.xml

Added: incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath?rev=880733&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath (added)
+++ incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath Mon Nov 16 13:03:10 2009
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<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>

Propchange: incubator/kato/trunk/org.apache.kato/kato.common.142/.classpath
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/trunk/org.apache.kato/kato.common.142/.project
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.common.142/.project?rev=880733&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.common.142/.project (added)
+++ incubator/kato/trunk/org.apache.kato/kato.common.142/.project Mon Nov 16 13:03:10 2009
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>kato.common.142</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>

Propchange: incubator/kato/trunk/org.apache.kato/kato.common.142/.project
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs?rev=880733&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs Mon Nov 16 13:03:10 2009
@@ -0,0 +1,5 @@
+#Mon Nov 16 12:13:45 GMT 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.source=1.6

Propchange: incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.eclipse.jdt.core.prefs
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs?rev=880733&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs Mon Nov 16 13:03:10 2009
@@ -0,0 +1,9 @@
+#Mon Nov 16 12:13:45 GMT 2009
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Propchange: incubator/kato/trunk/org.apache.kato/kato.common.142/.settings/org.maven.ide.eclipse.prefs
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml?rev=880733&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml (added)
+++ incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml Mon Nov 16 13:03:10 2009
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <parent>
+    <artifactId>kato</artifactId>
+    <groupId>org.apache.kato</groupId>
+    <version>M1-incubating</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.kato</groupId>
+  <artifactId>kato.common.142</artifactId>
+  <name>kato.common.142</name>
+  <version>M1-incubating</version>
+  <description>common routines compiled at a 1.4 level</description>
+  <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

Propchange: incubator/kato/trunk/org.apache.kato/kato.common.142/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: incubator/kato/trunk/org.apache.kato/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/pom.xml?rev=880733&r1=880732&r2=880733&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/pom.xml Mon Nov 16 13:03:10 2009
@@ -1,5 +1,5 @@
-<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">
+<?xml version="1.0" encoding="UTF-8"?>
+<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
@@ -50,7 +50,8 @@
 		<module>kato.native</module>
 		
 		
-	</modules>
+    <module>kato.common.142</module>
+  </modules>
 	<build>
 		<plugins>
 			<plugin>
@@ -110,4 +111,4 @@
     </plugins>
   </reporting>
 	
-</project>
+</project>
\ No newline at end of file