|
From: <caw...@us...> - 2007-04-27 15:28:17
|
Revision: 2386
http://svn.sourceforge.net/rubyeclipse/?rev=2386&view=rev
Author: cawilliams
Date: 2007-04-27 08:28:14 -0700 (Fri, 27 Apr 2007)
Log Message:
-----------
add manifest, require J2SE-1.5
Modified Paths:
--------------
trunk/org.rubypeople.rdt.debug.core/build.properties
trunk/org.rubypeople.rdt.debug.core/plugin.xml
trunk/org.rubypeople.rdt.debug.ui/build.properties
trunk/org.rubypeople.rdt.debug.ui/plugin.xml
trunk/org.rubypeople.rdt.launching/build.properties
trunk/org.rubypeople.rdt.launching/plugin.xml
Added Paths:
-----------
trunk/org.rubypeople.rdt.debug.core/META-INF/
trunk/org.rubypeople.rdt.debug.core/META-INF/MANIFEST.MF
trunk/org.rubypeople.rdt.debug.ui/META-INF/
trunk/org.rubypeople.rdt.debug.ui/META-INF/MANIFEST.MF
trunk/org.rubypeople.rdt.launching/META-INF/
trunk/org.rubypeople.rdt.launching/META-INF/MANIFEST.MF
Added: trunk/org.rubypeople.rdt.debug.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/META-INF/MANIFEST.MF (rev 0)
+++ trunk/org.rubypeople.rdt.debug.core/META-INF/MANIFEST.MF 2007-04-27 15:28:14 UTC (rev 2386)
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.rubypeople.rdt.debug.core; singleton:=true
+Bundle-Version: 0.0.0
+Bundle-ClassPath: rdtdebugcore.jar
+Bundle-Activator: org.rubypeople.rdt.internal.debug.core.RdtDebugCorePlugin
+Bundle-Vendor: %providerName
+Bundle-Localization: plugin
+Export-Package: org.rubypeople.rdt.internal.debug.core,
+ org.rubypeople.rdt.internal.debug.core.commands,
+ org.rubypeople.rdt.internal.debug.core.model,
+ org.rubypeople.rdt.internal.debug.core.parsing
+Require-Bundle: org.eclipse.core.resources,
+ org.eclipse.debug.core,
+ org.rubypeople.rdt.core,
+ org.kxml2,
+ org.eclipse.core.runtime
+Eclipse-LazyStart: true
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/org.rubypeople.rdt.debug.core/build.properties
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/build.properties 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.debug.core/build.properties 2007-04-27 15:28:14 UTC (rev 2386)
@@ -1,7 +1,8 @@
bin.includes = plugin.xml,\
plugin.properties,\
.options,\
- rdtdebugcore.jar
+ rdtdebugcore.jar,\
+ META-INF/
source.rdtdebugcore.jar = src/
plugin = org.rubypeople.rdt.debug.core
plugin.name = rdtdebugcore
Modified: trunk/org.rubypeople.rdt.debug.core/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/plugin.xml 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.debug.core/plugin.xml 2007-04-27 15:28:14 UTC (rev 2386)
@@ -1,27 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin
- id="org.rubypeople.rdt.debug.core"
- name="%Plugin.name"
- version="0.0.0"
- provider-name="%providerName"
- class="org.rubypeople.rdt.internal.debug.core.RdtDebugCorePlugin">
+<plugin>
- <runtime>
- <library name="rdtdebugcore.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.debug.core"/>
- <import plugin="org.rubypeople.rdt.core"/>
- <import plugin="org.kxml2"/>
- <import plugin="org.eclipse.core.runtime"/>
- </requires>
-
- <extension
+ <extension
id="RubyBreakpointMarker"
point="org.eclipse.core.resources.markers">
<super
Added: trunk/org.rubypeople.rdt.debug.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.debug.ui/META-INF/MANIFEST.MF (rev 0)
+++ trunk/org.rubypeople.rdt.debug.ui/META-INF/MANIFEST.MF 2007-04-27 15:28:14 UTC (rev 2386)
@@ -0,0 +1,35 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.rubypeople.rdt.debug.ui; singleton:=true
+Bundle-Version: 0.0.0
+Bundle-ClassPath: rdtdebugui.jar
+Bundle-Activator: org.rubypeople.rdt.internal.debug.ui.RdtDebugUiPlugin
+Bundle-Vendor: RubyPeople, Inc.
+Bundle-Localization: plugin
+Export-Package: org.rubypeople.rdt.debug.ui,
+ org.rubypeople.rdt.internal.debug.ui,
+ org.rubypeople.rdt.internal.debug.ui.actions,
+ org.rubypeople.rdt.internal.debug.ui.console,
+ org.rubypeople.rdt.internal.debug.ui.evaluation,
+ org.rubypeople.rdt.internal.debug.ui.launcher,
+ org.rubypeople.rdt.internal.debug.ui.preferences,
+ org.rubypeople.rdt.internal.debug.ui.rubyvms
+Require-Bundle: org.eclipse.core.resources,
+ org.eclipse.ui,
+ org.eclipse.debug.core,
+ org.eclipse.debug.ui,
+ org.rubypeople.rdt.launching,
+ org.rubypeople.rdt.ui,
+ org.rubypeople.rdt.core,
+ org.rubypeople.rdt.debug.core,
+ org.eclipse.ui.workbench,
+ org.eclipse.ui.workbench.texteditor,
+ org.eclipse.jface.text,
+ org.eclipse.ui.editors,
+ org.eclipse.ui.ide,
+ org.eclipse.ui.cheatsheets,
+ org.eclipse.core.runtime,
+ org.eclipse.ui.console
+Eclipse-LazyStart: true
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/org.rubypeople.rdt.debug.ui/build.properties
===================================================================
--- trunk/org.rubypeople.rdt.debug.ui/build.properties 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.debug.ui/build.properties 2007-04-27 15:28:14 UTC (rev 2386)
@@ -5,7 +5,8 @@
rdtdebugui.jar,\
cheatsheets/,\
icons/full/,\
- expressions/rdt.xml
+ expressions/rdt.xml,\
+ META-INF/
plugin = org.rubypeople.rdt.debug.ui
plugin.name = rdtdebugui
plugin.classpath = ../org.eclipse.core.resources/resources.jar;../org.eclipse.ui/worbench.jar;../org.eclipse.core.runtime/runtime.jar;../org.eclipse.core.resources/resources.jar;../org.eclipse.core.boot/boot.jar;../org.eclipse.debug.core/dtcore.jar;../org.eclipse.debug.ui/dtui.jar;../org.eclipse.swt/bin;../org.eclipse.ui/workbench.jar;../org.eclipse.swt.${ws}/ws/${ws}/swt.jar;../org.rubypeople.rdt.core/bin;../org.rubypeople.rdt.debug.core/bin;../org.rubypeople.rdt.launching/bin;../org.rubypeople.rdt.ui/bin;
Modified: trunk/org.rubypeople.rdt.debug.ui/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.debug.ui/plugin.xml 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.debug.ui/plugin.xml 2007-04-27 15:28:14 UTC (rev 2386)
@@ -1,35 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin id="org.rubypeople.rdt.debug.ui" name="%Plugin.name" version="0.0.0"
- provider-name="RubyPeople, Inc."
- class="org.rubypeople.rdt.internal.debug.ui.RdtDebugUiPlugin">
+<plugin>
- <runtime>
- <library name="rdtdebugui.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.ui"/>
- <import plugin="org.eclipse.debug.core"/>
- <import plugin="org.eclipse.debug.ui"/>
- <import plugin="org.rubypeople.rdt.launching"/>
- <import plugin="org.rubypeople.rdt.ui"/>
- <import plugin="org.rubypeople.rdt.core"/>
- <import plugin="org.rubypeople.rdt.debug.core"/>
- <import plugin="org.eclipse.ui.workbench"/>
- <import plugin="org.eclipse.ui.workbench.texteditor"/>
- <import plugin="org.eclipse.jface.text"/>
- <import plugin="org.eclipse.ui.editors"/>
- <import plugin="org.eclipse.ui.ide"/>
- <import plugin="org.eclipse.ui.cheatsheets"/>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.ui.console"/>
- </requires>
-
- <extension point="org.eclipse.ui.preferencePages">
+ <extension point="org.eclipse.ui.preferencePages">
<page name="%PreferencePage.RubyInterpreter.name"
category="org.rubypeople.rdt.ui.preferences.PreferencePageRubyBase"
class="org.rubypeople.rdt.internal.debug.ui.preferences.RubyInterpreterPreferencePage"
Added: trunk/org.rubypeople.rdt.launching/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.launching/META-INF/MANIFEST.MF (rev 0)
+++ trunk/org.rubypeople.rdt.launching/META-INF/MANIFEST.MF 2007-04-27 15:28:14 UTC (rev 2386)
@@ -0,0 +1,19 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.rubypeople.rdt.launching; singleton:=true
+Bundle-Version: 0.0.0
+Bundle-ClassPath: launching.jar
+Bundle-Activator: org.rubypeople.rdt.internal.launching.LaunchingPlugin
+Bundle-Vendor: RubyPeople, Inc.
+Bundle-Localization: plugin
+Export-Package: org.rubypeople.rdt.internal.launching,
+ org.rubypeople.rdt.launching
+Require-Bundle: org.eclipse.core.resources,
+ org.eclipse.debug.core,
+ org.rubypeople.rdt.core,
+ org.rubypeople.rdt.debug.core,
+ org.eclipse.core.runtime,
+ org.eclipse.core.variables
+Eclipse-LazyStart: true
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/org.rubypeople.rdt.launching/build.properties
===================================================================
--- trunk/org.rubypeople.rdt.launching/build.properties 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.launching/build.properties 2007-04-27 15:28:14 UTC (rev 2386)
@@ -2,7 +2,8 @@
plugin.properties,\
ruby/*,\
launching.jar,\
- .options
+ .options,\
+ META-INF/
plugin = org.rubypeople.rdt.launching
plugin.name = launching
plugin.classpath = ../org.eclipse.core.runtime/runtime.jar;../org.eclipse.core.resources/resources.jar;../org.eclipse.core.boot/boot.jar;../org.eclipse.debug.core/dtcore.jar;../org.eclipse.ui/workbench.jar;../org.apache.xerces/xmlParserAPIs.jar;../org.rubypeople.rdt.core/bin;../org.rubypeople.rdt.debug.core/bin;
Modified: trunk/org.rubypeople.rdt.launching/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.launching/plugin.xml 2007-04-27 15:27:14 UTC (rev 2385)
+++ trunk/org.rubypeople.rdt.launching/plugin.xml 2007-04-27 15:28:14 UTC (rev 2386)
@@ -1,28 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin
- id="org.rubypeople.rdt.launching"
- name="%Plugin.name"
- version="0.0.0"
- provider-name="RubyPeople, Inc."
- class="org.rubypeople.rdt.internal.launching.LaunchingPlugin">
+<plugin>
- <runtime>
- <library name="launching.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.debug.core"/>
- <import plugin="org.rubypeople.rdt.core"/>
- <import plugin="org.rubypeople.rdt.debug.core"/>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.core.variables"/>
- </requires>
-
- <!-- Extension point definitions -->
+ <!-- Extension point definitions -->
<extension-point id="vmInstallTypes" name="%vmInstallTypes" schema="schema/vmInstallTypes.exsd"/>
<extension-point id="vmInstalls" name="%vmInstalls" schema="schema/vmInstalls.exsd"/>
<extension-point id="loadpathProviders" name="%loadpathProviders" schema="schema/loadpathProviders.exsd"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|