Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] Plugin not started [SOLVED]


Glad we could help.  As for documentation, there is some information on the tags of the build file, but not anything as in-depth as you would like.  You can find it in the Help Contents under Plug-in Development Environment Guide > Reference > Feature and Plug-in Build configuration.

If you have any further questions about the build that aren't answered in the documentation, go ahead and post them here and we can see if we can answer them.

Brian Bauman
    IBM Software Group - Austin, TX
    Eclipse Committer
    baumanbr@xxxxxxxxxx
    (512) 838 -2938 (T/L 678-2938)



From: Boris Glawe <public@xxxxxxxxxxxxxx>
To: "Eclipse PDE general developers list." <pde-dev@xxxxxxxxxxx>
Date: 10/03/2007 01:59 PM
Subject: Re: [pde-dev] Plugin not started [SOLVED]





Brian Bauman schrieb:
>
> One of the most common problems is to reference a class in a jar which
> you don't have access to at runtime.  For instance, if you place a jar
> in your project (project A), any other project who depends on project
> A can use classes in it.  But since the jar is not on the
> Bundle-Classpath, when you run the bundle it will fail to find the
> class.  This is the reason I asked about the class being in a jar vs
> source folder.
>
> The things to verify to make sure it works:
> 1. Verify the source folder is included as a library.  This should be
> in the build.properties of your project.  You should see an entry for
> source.<library_name>= <source folder>.  That library name should
> appear in the Bundle-Classpath header of your manifest (unless the
> library is '.' and you don't specify a Bundle-Classpath).
I don't know, what this building mechanism is all about! I opened the
build.properties file and activated the "custom build" option. Now  it
works!!

Thanks a lot, that hint was the key!

Do you have a link where I can read/learn more about this build mechanism?

Thanks and greets

Boris


_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-dev


Back to the top