|
From: <caw...@us...> - 2006-07-17 23:31:11
|
Revision: 1512 Author: cawilliams Date: 2006-07-17 16:31:05 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/rubyeclipse/?rev=1512&view=rev Log Message: ----------- add an OSGi bundle maifest to fix compilation errors with Eclipse 3.2 Modified Paths: -------------- branches/type_inferrence/trunk/org.epic.regexp/build.properties branches/type_inferrence/trunk/org.epic.regexp/plugin.xml Added Paths: ----------- branches/type_inferrence/trunk/org.epic.regexp/META-INF/ branches/type_inferrence/trunk/org.epic.regexp/META-INF/MANIFEST.MF Added: branches/type_inferrence/trunk/org.epic.regexp/META-INF/MANIFEST.MF =================================================================== --- branches/type_inferrence/trunk/org.epic.regexp/META-INF/MANIFEST.MF (rev 0) +++ branches/type_inferrence/trunk/org.epic.regexp/META-INF/MANIFEST.MF 2006-07-17 23:31:05 UTC (rev 1512) @@ -0,0 +1,17 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Regexp Plug-in +Bundle-SymbolicName: org.epic.regexp; singleton:=true +Bundle-Version: 0.1.4 +Bundle-ClassPath: regexp.jar, + gnu-regexp-1.1.4.jar +Bundle-Activator: org.epic.regexp.RegExpPlugin +Bundle-Vendor: Epic Project +Bundle-Localization: plugin +Export-Package: gnu.regexp, + org.epic.regexp, + org.epic.regexp.views +Require-Bundle: org.eclipse.ui, + org.eclipse.core.runtime, + org.eclipse.core.resources +Eclipse-LazyStart: true Modified: branches/type_inferrence/trunk/org.epic.regexp/build.properties =================================================================== --- branches/type_inferrence/trunk/org.epic.regexp/build.properties 2006-07-11 06:11:31 UTC (rev 1511) +++ branches/type_inferrence/trunk/org.epic.regexp/build.properties 2006-07-17 23:31:05 UTC (rev 1512) @@ -3,4 +3,5 @@ *.jar,\ regexp.jar,\ shortcuts,\ - icons/ + icons/,\ + META-INF/ Modified: branches/type_inferrence/trunk/org.epic.regexp/plugin.xml =================================================================== --- branches/type_inferrence/trunk/org.epic.regexp/plugin.xml 2006-07-11 06:11:31 UTC (rev 1511) +++ branches/type_inferrence/trunk/org.epic.regexp/plugin.xml 2006-07-17 23:31:05 UTC (rev 1512) @@ -1,27 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> -<plugin - id="org.epic.regexp" - name="Regexp Plug-in" - version="0.1.4" - provider-name="Epic Project" - class="org.epic.regexp.RegExpPlugin"> +<plugin> - <runtime> - <library name="regexp.jar"> - <export name="*"/> - </library> - <library name="gnu-regexp-1.1.4.jar"> - <export name="*"/> - </library> - </runtime> - <requires> - <import plugin="org.eclipse.ui"/> - <import plugin="org.eclipse.core.runtime"/> - <import plugin="org.eclipse.core.resources"/> - </requires> - - <extension + <extension point="org.eclipse.ui.views"> <view name="RegExp" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |