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/07/31 09:19:14 UTC

svn commit: r799553 - in /incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin: .classpath .settings/org.eclipse.jdt.core.prefs META-INF/MANIFEST.MF build.properties include.xml plugin.xml pom.xml

Author: spoole
Date: Fri Jul 31 09:19:13 2009
New Revision: 799553

URL: http://svn.apache.org/viewvc?rev=799553&view=rev
Log:
changes to eclipse api plugin to get it to take a jar of the API

Removed:
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/plugin.xml
Modified:
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.classpath
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.settings/org.eclipse.jdt.core.prefs
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/META-INF/MANIFEST.MF
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/build.properties
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/include.xml
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/pom.xml

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.classpath?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.classpath (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.classpath Fri Jul 31 09:19:13 2009
@@ -4,7 +4,7 @@
 	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
 	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
 	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
-	<classpathentry exported="true" kind="lib" path="target/api.classes/"/>
+	<classpathentry exported="true" kind="lib" path="target/api.jar"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.settings/org.eclipse.jdt.core.prefs?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.settings/org.eclipse.jdt.core.prefs (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/.settings/org.eclipse.jdt.core.prefs Fri Jul 31 09:19:13 2009
@@ -1,12 +1,12 @@
-#Thu Jun 25 12:01:54 BST 2009
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.6
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.6
+#Fri Jul 31 09:57:51 BST 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.3

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/META-INF/MANIFEST.MF?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/META-INF/MANIFEST.MF (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/META-INF/MANIFEST.MF Fri Jul 31 09:19:13 2009
@@ -4,10 +4,10 @@
 Bundle-SymbolicName: org.apache.kato.api.plugin;singleton:=true
 Bundle-Version: 0.0.1
 Bundle-ClassPath: .,
- target/api.classes/
+ target/api.jar
 Bundle-Vendor: Apache Software Foundation
-Export-Package: org.apache.kato,
- org.apache.kato.image,
- org.apache.kato.java,
- org.apache.kato.runtime
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Export-Package: javax.tools.diagnostics,
+ javax.tools.diagnostics.image,
+ javax.tools.diagnostics.runtime,
+ javax.tools.diagnostics.runtime.java

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/build.properties
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/build.properties?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/build.properties (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/build.properties Fri Jul 31 09:19:13 2009
@@ -1,7 +1,4 @@
-source.. = src/main/java/,\
-           src/main/resources/,\
-           src/test/java/,\
-           src/test/resources/
 bin.includes = META-INF/,\
-               .,\
-               target/api.classes/
+               target/api.jar
+jars.compile.order = .
+source.. = 

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/include.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/include.xml?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/include.xml (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/include.xml Fri Jul 31 09:19:13 2009
@@ -16,13 +16,13 @@
     </target>
 
 	<target name="copy-classes" if="local.include">
-		<copy todir="target/api.classes">
-			<fileset dir="${path}"/>
-		</copy>
+		<jar basedir="${path}" destfile="target/api.jar"/>
+		
 	</target>
 	
 	<target name="copy-jar" unless="local.include">
-		<unjar dest="target/api.classes" overwrite="true" src="${path}"/>
+		<copy tofile="target/api.jar" file="${path}" overwrite="true"/>
+		
 	</target>
 		
 </project>
\ No newline at end of file

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/pom.xml?rev=799553&r1=799552&r2=799553&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.plugin/pom.xml Fri Jul 31 09:19:13 2009
@@ -31,6 +31,7 @@
               <goal>build-classpath</goal>
             </goals>
             <configuration>
+              <includeArtifactIds>kato.api</includeArtifactIds>
               <outputFile>target/include.txt</outputFile>
               <overWriteReleases>false</overWriteReleases>
               <overWriteSnapshots>true</overWriteSnapshots>