Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] How to make Bundle.getEntry work properly when debugging a maven-bundle-plugin based bundle?

Hello,

I'm facing a problem with a bundle created by maven-bundle-plugin that contains the myresource.xml resource file inside the src/main/resources/configuration directory.

When running an eclipse OSGi debug, trying to get this resource using bundle.getEntry("/configuration/myresource.xml")  returns me a null value.

Investigating, I searched for this resource using bundle.findEntries("/", "myresource.xml", true) and it returned me:

[src/main/resources/configuration/myresource.xml, target/classes/configuration/myresource.xml]

is this behaviour being caused by m2e or maven-bundle-plugin or PDE?

anything I can do so bundle.getEntry("/configuration/myresource.xml") gives me the right value ?

many thanks,

Cristiano

Back to the top