Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] URGENT! - Plug-in F12Plugin was unable to load class GlobalActivities

Hi,

in my plugins I don't use output.f12plugin.jar = bin/. Only source. In
the resulting plugin jar, do you see f12plugin.jar in the root folder?
It might be good to send us part of the the logfile as well, there is
more information to be found over there.

Regards,
Leen

On 11/14/05, Count Zero <countzero81@xxxxxxxxxxxx> wrote:
> Thanks a lot for the prompt reply.
> There's not runtime section in plugin.xml . I modified the build
> properties and, in fact, the output was just fine.
> I modified the build.properties like this:
> source.f12plugin.jar = src/
> output.f12plugin.jar = bin/
> bin.includes = plugin.xml,\
>                META-INF/,\
>                icons/,\
>                .,\
>                dom4j-1.6.1.jar,\
>                jaxen-1.1-beta-6.jar,\
>                jaxme-api-0.3.jar
> And the tree that came out is:
>
> /
> icons/
> META_INF/
> dom4j-1.6.1.jar
> f12.plugin.jar => META_INF/ , f12plugin/
> f12pluginsrc.zip
> jaxen-1.1.-beta-6.jar
> jaxme-api-0.3.jar
> plugin.xml
>
> Still, when I copy this directory in eclipse/plugins/ and lauch eclipse,
> all menus are there, but I keep getting:
> Could not create action delegate for id: f12Plugin.actions.GlobalActivities
> Reason:
> Plug-in f12Plugin was unable to load class
> f12Plugin.actions.GlobalActivities.
> when I click on an item.
> Thank you very much for you patience
>
>
> Leen Toelen ha scritto:
>
> >In the plugin.xml, do you see a something in the Runtime information
> >table. You should add the myjar.jar over there, and in
> >build.properties add source.myjar.jar = src/
> >This way you tell eclipse to build all your code to a jar file.
> >
> >Regards,
> >Leen Toelen
> >
> >On 11/14/05, Count Zero <countzero81@xxxxxxxxxxxx> wrote:
> >
> >
> >>Unluckly, they do...
> >>
> >>Bruno Wassermann ha scritto:
> >>
> >>
> >>
> >>>You might want to check whether the jar file name in plugin.xml and
> >>>build.properties really match.
> >>>
> >>>-----Original Message-----
> >>>From: pde-dev-bounces@xxxxxxxxxxx [mailto:pde-dev-bounces@xxxxxxxxxxx] On
> >>>Behalf Of Count Zero
> >>>Sent: 14 November 2005 09:40
> >>>To: pde-dev@xxxxxxxxxxx
> >>>Subject: [pde-dev] URGENT! - Plug-in F12Plugin was unable to load class
> >>>GlobalActivities
> >>>
> >>>Good day everyone,
> >>>I'm sorry for my firt post to be Urgent... but it actually is.
> >>>I've been developing di plugin for over a month and never tried
> >>>deploying it. No I have to...
> >>>I had my problems in including external jar libraries, but finally I
> >>>succeeded.
> >>>Now, when I deploy my plugin in a jar file, say, F12Plugin_1.0.0.jar, I
> >>>can see my menus but when I click on them, I get the message:
> >>>Plug-in F12Plugin was unable to load class <class name>
> >>>
> >>>I had a look at the stacktrance and it says:
> >>>java.lang.ClassNotFoundException: f12Plugin.actions.GlobalActivities
> >>>
> >>>The jar tree is like:
> >>>bin
> >>>  \f12Plugin
> >>>     \actions
> >>>META_INF
> >>>build.properties
> >>>plugin.xml
> >>>
> >>>My manifest is like:
> >>>Manifest-Version: 1.0
> >>>Bundle-ManifestVersion: 2
> >>>Bundle-Name: F12 Plug-in
> >>>Bundle-SymbolicName: F12Plugin; singleton:=true
> >>>Bundle-Version: 1.0.0
> >>>Bundle-Activator: f12Plugin.F12PluginPlugin
> >>>Require-Bundle: org.eclipse.ui,
> >>>org.eclipse.core.runtime,
> >>>org.eclipse.jface.text,
> >>>org.eclipse.core.resources,
> >>>[...]
> >>>Export-Package: f12Plugin,
> >>>f12Plugin.Internals,
> >>>f12Plugin.actions,
> >>>f12Plugin.components,
> >>>f12Plugin.dialogs,
> >>>f12Plugin.editors,
> >>>f12Plugin.perspectives,
> >>>f12Plugin.staticsAndGlobals,
> >>>f12Plugin.views,
> >>>f12Plugin.webComm
> >>>
> >>>
> >>>My build properties is:
> >>>source.. = src/
> >>>output.. = bin/
> >>>bin.includes = plugin.xml,\
> >>>             META-INF/,\
> >>>             icons/,\
> >>>             bin/,\
> >>>             .,\
> >>>             build.properties,\
> >>>             dom4j-1.6.1.jar
> >>>
> >>>Any suggestion very appreciated...
> >>>Thanks!
> >>>_______________________________________________
> >>>pde-dev mailing list
> >>>pde-dev@xxxxxxxxxxx
> >>>https://dev.eclipse.org/mailman/listinfo/pde-dev
> >>>
> >>>_______________________________________________
> >>>pde-dev mailing list
> >>>pde-dev@xxxxxxxxxxx
> >>>https://dev.eclipse.org/mailman/listinfo/pde-dev
> >>>
> >>>
> >>>
> >>>
> >>>
> >>_______________________________________________
> >>pde-dev mailing list
> >>pde-dev@xxxxxxxxxxx
> >>https://dev.eclipse.org/mailman/listinfo/pde-dev
> >>
> >>
> >>
> >_______________________________________________
> >pde-dev mailing list
> >pde-dev@xxxxxxxxxxx
> >https://dev.eclipse.org/mailman/listinfo/pde-dev
> >
> >
> >
>
> _______________________________________________
> pde-dev mailing list
> pde-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/pde-dev
>


Back to the top