Andrea Sindico
Andrea Sindico

Reputation: 7440

Eclipse: how to export a folder in a plugin

I have a plugin containing a folder with files the plugin uses. I have noticed the folder is not exported in the plugin jar during its export. I guess there has to be some configuration I am missing but I can't find where it is.

Upvotes: 0

Views: 101

Answers (2)

luksch
luksch

Reputation: 11712

Go to MANIFEST.MF editor and in the Build tab you need to add the directory to the "Binary Build"

(This is the Gui way of what Michal Borek said. Both will have the same result)

Upvotes: 1

Michal Borek
Michal Borek

Reputation: 4634

You need to add this folders to build.properties file in bin.includes section.

Upvotes: 1

Related Questions