|
From: <caw...@us...> - 2006-07-17 23:31:39
|
Revision: 1513 Author: cawilliams Date: 2006-07-17 16:31:33 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/rubyeclipse/?rev=1513&view=rev Log Message: ----------- add an OSGi bundle manifest, add dependency on org.jruby plugin Modified Paths: -------------- branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/build.properties branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/plugin.xml Added Paths: ----------- branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/META-INF/ branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF Added: branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF =================================================================== --- branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF (rev 0) +++ branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF 2006-07-17 23:31:33 UTC (rev 1513) @@ -0,0 +1,23 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: org.rubypeople.rdt.testunit; singleton:=true +Bundle-Version: 0.0.0 +Bundle-ClassPath: testunit.jar +Bundle-Activator: org.rubypeople.rdt.testunit.TestunitPlugin +Bundle-Vendor: %providerName +Bundle-Localization: plugin +Export-Package: org.rubypeople.rdt.testunit.views +Require-Bundle: org.eclipse.ui, + org.eclipse.core.runtime, + org.eclipse.debug.core, + org.eclipse.debug.ui, + org.rubypeople.rdt.launching, + org.rubypeople.rdt.core, + org.eclipse.core.resources, + org.rubypeople.rdt.ui, + org.rubypeople.rdt.debug.ui, + org.eclipse.ui.workbench.texteditor, + org.eclipse.text, + org.jruby +Eclipse-LazyStart: true Modified: branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/build.properties =================================================================== --- branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/build.properties 2006-07-17 23:31:05 UTC (rev 1512) +++ branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/build.properties 2006-07-17 23:31:33 UTC (rev 1513) @@ -4,4 +4,5 @@ testunit.jar,\ icons/,\ plugin.properties,\ - ruby/ + ruby/,\ + META-INF/ Modified: branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/plugin.xml =================================================================== --- branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/plugin.xml 2006-07-17 23:31:05 UTC (rev 1512) +++ branches/type_inferrence/trunk/org.rubypeople.rdt.testunit/plugin.xml 2006-07-17 23:31:33 UTC (rev 1513) @@ -1,34 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> -<plugin - id="org.rubypeople.rdt.testunit" - name="%pluginName" - version="0.0.0" - provider-name="%providerName" - class="org.rubypeople.rdt.testunit.TestunitPlugin"> +<plugin> - <runtime> - <library name="testunit.jar"> - <export name="*"/> - </library> - </runtime> + <extension-point id="internalTestRunTabs" name="%testRunTabs.name" schema="schema/internal-testRunTabs.exsd"/> - <requires> - <import plugin="org.eclipse.ui"/> - <import plugin="org.eclipse.core.runtime"/> - <import plugin="org.eclipse.debug.core"/> - <import plugin="org.eclipse.debug.ui"/> - <import plugin="org.rubypeople.rdt.launching"/> - <import plugin="org.rubypeople.rdt.core"/> - <import plugin="org.eclipse.core.resources"/> - <import plugin="org.rubypeople.rdt.ui"/> - <import plugin="org.rubypeople.rdt.debug.ui"/> - <import plugin="org.eclipse.ui.workbench.texteditor"/> - <import plugin="org.eclipse.text"/> - </requires> - - <extension-point id="internalTestRunTabs" name="%testRunTabs.name" schema="schema/internal-testRunTabs.exsd"/> - <extension point="org.rubypeople.rdt.testunit.internalTestRunTabs"> <testRunTab class="org.rubypeople.rdt.testunit.views.FailureTab"/> <testRunTab class="org.rubypeople.rdt.testunit.views.TestHierarchyTab"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |