Skip to main content



      Home
Home » Language IDEs » Java Development Tools (JDT) » Errors in Exporting Plugins - could anyone explain why?
Errors in Exporting Plugins - could anyone explain why? [message #167694] Thu, 08 July 2004 09:47 Go to next message
Eclipse UserFriend
Originally posted by: phil.dadabeatnik.com

Hi there,

Im trying to Export two plugin projects at the same time using the Export
wizard in Eclipse 3.0 on Windows, Sun 1.1.4 JVM. When I Export them one at
a time there is not a problem, but if I select both together in the Export
dialog window and then Export there is produced a zip with errors such as
this:

----------
1. ERROR in
D:\projekts\workspace\reload-jdom-plugin\src\uk\ac\reload\jd om\XMLActiveDocu
ment.java (at line 49)
import org.jdom.Document;
^^^^^^^^
The import org.jdom cannot be resolved
----------


I have one simple project which basically wraps a jdom.jar as a plugin like
this

<plugin
id="org.jdom.plugin"
name="JDOM Plug-in"
version="0.9.0"
provider-name="Reload Tools">
<runtime>
<library name="jdom.jar">
<export name="*"/>
</library>
</runtime>
</plugin>

And then I have another Java Plugin Project that depends on the first one:

<plugin
id="uk.ac.reload.jdom.plugin"
name="Reload_jdom_plugin Plug-in"
version="1.0.0"
provider-name=""
class="reload_jdom_plugin.Reload_jdom_pluginPlugin">
<runtime>
<library name="reload_jdom_plugin.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.jdom.plugin"/>
</requires>
</plugin>


Any help appreciated!

Phillipus
Re: Errors in Exporting Plugins - could anyone explain why? [message #167748 is a reply to message #167694] Thu, 08 July 2004 10:33 Go to previous message
Eclipse UserFriend
Originally posted by: phil.dadabeatnik.com

OK, a quick search of Bugzilla reveals this:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=68712

Phillipus



"Phillipus" <phil@dadabeatnik.com> wrote in message
news:ccjj6s$if1$1@eclipse.org...
> Hi there,
>
> Im trying to Export two plugin projects at the same time using the Export
> wizard in Eclipse 3.0 on Windows, Sun 1.1.4 JVM. When I Export them one
at
> a time there is not a problem, but if I select both together in the Export
> dialog window and then Export there is produced a zip with errors such as
> this:
>
> ----------
> 1. ERROR in
>
D:\projekts\workspace\reload-jdom-plugin\src\uk\ac\reload\jd om\XMLActiveDocu
> ment.java (at line 49)
> import org.jdom.Document;
> ^^^^^^^^
> The import org.jdom cannot be resolved
> ----------
>
>
> I have one simple project which basically wraps a jdom.jar as a plugin
like
> this
>
> <plugin
> id="org.jdom.plugin"
> name="JDOM Plug-in"
> version="0.9.0"
> provider-name="Reload Tools">
> <runtime>
> <library name="jdom.jar">
> <export name="*"/>
> </library>
> </runtime>
> </plugin>
>
> And then I have another Java Plugin Project that depends on the first one:
>
> <plugin
> id="uk.ac.reload.jdom.plugin"
> name="Reload_jdom_plugin Plug-in"
> version="1.0.0"
> provider-name=""
> class="reload_jdom_plugin.Reload_jdom_pluginPlugin">
> <runtime>
> <library name="reload_jdom_plugin.jar">
> <export name="*"/>
> </library>
> </runtime>
> <requires>
> <import plugin="org.jdom.plugin"/>
> </requires>
> </plugin>
>
>
> Any help appreciated!
>
> Phillipus
>
>
Previous Topic:Many projects based on one source directory
Next Topic:Compilation errors in Tasks in 3.0
Goto Forum:
  


Current Time: Fri Jun 06 11:05:28 EDT 2025

Powered by FUDForum. Page generated in 0.06432 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top