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/
The problem was: The Maven build is case sensitive for file names, while eclipse is not.
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.