Hi,
I am using a Derby local (embedded) database for one of my RCP projects. The database is located within the project folder structure in eclipse and is checked to be included in the build.
My folder structure in Eclipse is:
projectname
I
I- src
I
I- database
I I
I I-project database here
I
I
I- icons
...
The Eclipse build process now includes the database folder including the subfolders into the jar file of the project.
Unfortunately I can not convice Derby to look inside the packaged jar file and use the database there, so I would like to have the database, which I am using and filling while developing the software, excluded from the jar packaging, but included into the later build product.
My dream would be to have the product folder structure like this:
productname
I
I- configuration
I
I- database ...!
I
I- jre
I
I- p2
I
I- plugins
I
I- artifacts.xml
I- productname.exe
I- productname.ini
Can this somehow be achieved with the PDE build process? Thanks!