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/26 07:34:42 UTC

svn commit: r778595 - in /incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin: .classpath .project META-INF/MANIFEST.MF pom.xml

Author: spoole
Date: Tue May 26 07:34:41 2009
New Revision: 778595

URL: http://svn.apache.org/viewvc?rev=778595&view=rev
Log:
changes to api plugin to see if can propogate a jar lib dependency

Modified:
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.classpath
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.project
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/META-INF/MANIFEST.MF
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/pom.xml

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.classpath?rev=778595&r1=778594&r2=778595&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.classpath (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.classpath Tue May 26 07:34:41 2009
@@ -5,7 +5,7 @@
 	<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="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/classes"/>
 </classpath>

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.project
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.project?rev=778595&r1=778594&r2=778595&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.project (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/.project Tue May 26 07:34:41 2009
@@ -11,17 +11,17 @@
 			</arguments>
 		</buildCommand>
 		<buildCommand>
-			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<name>org.eclipse.pde.ManifestBuilder</name>
 			<arguments>
 			</arguments>
 		</buildCommand>
 		<buildCommand>
-			<name>org.eclipse.pde.ManifestBuilder</name>
+			<name>org.eclipse.pde.SchemaBuilder</name>
 			<arguments>
 			</arguments>
 		</buildCommand>
 		<buildCommand>
-			<name>org.eclipse.pde.SchemaBuilder</name>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
 			<arguments>
 			</arguments>
 		</buildCommand>

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/META-INF/MANIFEST.MF?rev=778595&r1=778594&r2=778595&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/META-INF/MANIFEST.MF (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/META-INF/MANIFEST.MF Tue May 26 07:34:41 2009
@@ -3,3 +3,5 @@
 Bundle-Name: Plugin
 Bundle-SymbolicName: kato.explorer.plugin
 Bundle-Version: 1.0.0
+Require-Bundle: org.apache.kato.api.plugin;bundle-version="0.0.1",
+ org.apache.kato.api.registry.plugin;bundle-version="1.0.0"

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/pom.xml?rev=778595&r1=778594&r2=778595&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/pom.xml (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.explorer.plugin/pom.xml Tue May 26 07:34:41 2009
@@ -8,4 +8,17 @@
   <groupId>org.apache.kato</groupId>
   <artifactId>kato.explorer.plugin</artifactId>
   <version>0.0.1-SNAPSHOT</version>
+  <dependencies>
+  	<dependency>
+  		<groupId>org.apache.kato</groupId>
+  		<artifactId>kato.api.plugin</artifactId>
+  		<version>0.0.1-SNAPSHOT</version>
+  	</dependency>
+  	<dependency>
+  		<groupId>org.apache.kato</groupId>
+  		<artifactId>kato.api.registry.plugin</artifactId>
+  		<version>0.0.1-SNAPSHOT</version>
+  		<type>zip</type>
+  	</dependency>
+  </dependencies>
 </project>
\ No newline at end of file