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/05/23 09:43:06 UTC

svn commit: r777876 - in /incubator/kato/branches/experimental/maven_restructure/org.apache.kato: ./ kato.api/ kato.jvmti/ kato.tck.harness/ plugins/kato.api.plugin/ plugins/kato.api.plugin/src/ plugins/kato.api.plugin/src/main/ plugins/kato.api.plugin...

Author: spoole
Date: Sat May 23 09:43:05 2009
New Revision: 777876

URL: http://svn.apache.org/viewvc?rev=777876&view=rev
Log:
creation of new structure for building with maven

Added:
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.project   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/main/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/main/java/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/main/resources/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/test/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/test/java/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/src/test/resources/
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml   (with props)
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml   (with props)

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath Sat May 23 09:43:05 2009
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.classpath
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.project
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.project?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.project (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/.project Sat May 23 09:43:05 2009
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>kato</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/branches/experimental/maven_restructure/org.apache.kato/.project
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,11 @@
+<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.api</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.api/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,11 @@
+<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.jvmti</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.jvmti/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,11 @@
+<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.tck.harness</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/kato.tck.harness/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,11 @@
+<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.api.plugin</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,11 @@
+<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.hexeditor.plugin</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.hexeditor.plugin/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml?rev=777876&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml Sat May 23 09:43:05 2009
@@ -0,0 +1,16 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>foo.apache.kato</groupId>
+  <artifactId>kato</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Kato</name>
+  <version>0.0.1-SNAPSHOT</version>
+  <description>Apache Kato</description>
+  <modules>
+  	<module>kato.api</module>
+  	<module>kato.jvmti</module>
+  	<module>kato.tck.harness</module>
+  	<module>plugins/kato.api.plugin</module>
+  	<module>plugins/kato.hexeditor.plugin</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain