Loading resources in a plug-in works in eclipse but not for maven

207 Views Asked by At

I am trying to load resources with the platform URL approach in an e4 RCP application. This works fine for my application plug-in. But I have got a second plug-in which extends the application via fragments. In this plug-in this approach

platform:/plugin/<name>/<path>

does not work. If I start the project from eclipse though, the resources can be loaded. What could I be doing wrong?

The build.properties content of the plug-in is as follows:

source.. = src
bin.includes = META-INF/,\
           .,\
           plugin.xml,\
           fragment.e4xmi,\
           res/
1

There are 1 best solutions below

3
On

The problem was: The Maven build is case sensitive for file names, while eclipse is not.

new URL("platform:/plugin/name/res/myfile.txt")
new URL("platform:/plugin/name/res/myFile.txt")

In eclipse, both versions are working; from maven build, only the second version. This seems quite strange to me. It would be great if anyone could explain this.