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 15:26:52 UTC

svn commit: r778749 - in /incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins: kato.api.plugin/ kato.api.plugin/META-INF/ kato.api.registry.plugin/META-INF/ kato.explorer.plugin/

Author: spoole
Date: Tue May 26 15:26:51 2009
New Revision: 778749

URL: http://svn.apache.org/viewvc?rev=778749&view=rev
Log:
trying to eclipse feature build via maven

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

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/.classpath?rev=778749&r1=778748&r2=778749&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/.classpath (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/.classpath Tue May 26 15:26:51 2009
@@ -8,5 +8,6 @@
 	<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.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/kato.api"/>
 	<classpathentry kind="output" path="target/classes"/>
 </classpath>

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/META-INF/MANIFEST.MF?rev=778749&r1=778748&r2=778749&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/META-INF/MANIFEST.MF (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/META-INF/MANIFEST.MF Tue May 26 15:26:51 2009
@@ -6,7 +6,6 @@
 Bundle-ClassPath: .,
  lib/kato.api-0.0.1-SNAPSHOT.jar
 Bundle-Vendor: Apache Software Foundation
-Bundle-Localization: plugin
 Export-Package: org.apache.kato,
  org.apache.kato.image,
  org.apache.kato.java,

Modified: 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=778749&r1=778748&r2=778749&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.plugin/pom.xml Tue May 26 15:26:51 2009
@@ -17,6 +17,30 @@
     </dependency>
    </dependencies>
    
+    <build>
+  	<plugins>
+  	<plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-dependencies</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>copy-dependencies</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>lib</outputDirectory>
+              <overWriteReleases>false</overWriteReleases>
+              <overWriteSnapshots>true</overWriteSnapshots>
+              <overWriteIfNewer>true</overWriteIfNewer>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+  	</plugins> 
+  </build>
+   
    
    
 </project>
\ No newline at end of file

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.registry.plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.registry.plugin/META-INF/MANIFEST.MF?rev=778749&r1=778748&r2=778749&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.registry.plugin/META-INF/MANIFEST.MF (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/plugins/kato.api.registry.plugin/META-INF/MANIFEST.MF Tue May 26 15:26:51 2009
@@ -14,5 +14,13 @@
  org.eclipse.ui.ide,
  org.eclipse.ui.editors,
  org.apache.kato.api.plugin
-Export-Package: org.apache.kato.api.plugin,
- org.apache.kato.api.plugin.preferences
+Export-Package: org.apache.kato.api.plugin;
+  uses:="org.eclipse.jface.resource,
+   org.apache.kato.image,
+   org.eclipse.ui.plugin,
+   org.osgi.framework",
+ org.apache.kato.api.plugin.preferences;
+  uses:="org.eclipse.jface.preference,
+   org.eclipse.ui,
+   org.eclipse.swt.widgets,
+   org.eclipse.core.runtime.preferences"

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=778749&r1=778748&r2=778749&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 15:26:51 2009
@@ -7,5 +7,6 @@
 	<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.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/kato.api"/>
 	<classpathentry kind="output" path="target/classes"/>
 </classpath>