My eclipse project structure is as given below
->MyProject
-->JRE System Lib
-->plugin dependencies
-->src
-->extJars (contains some external JARs)
-->icons(contains icons files)
-->META-INF
-->build.properties
-->plugin.xml
-->Myproject.product
When I export MyProject as a product using Eclipse MyProject.product, complete files in MyProject including ExtJars and icons get bundled as a single JAR file. MyProject/plugins/MyProject_1.0.0.0.jar
I want extJars and icons to be kept outside that single JAR file.
Kindly help me in achieving this.
Thank You