Mario Marinato
Mario Marinato

Reputation: 4617

How do I sign Jars when exporting an Eclipse RCP product?

My team develops an Eclipse RCP application, and we want to sign our jars when the product is exported, but we didn't find a way to do this. Interface-wise, jars signing is available only through features and plugins export commands, not through product export.

So far, we tried to add signing information on our plugins build.properties files and on some of the files located on eclipse\plugins\org.eclipse.pde.build\scripts. Nothing changed and our plugins were still unsigned.

We understand that we have to use Ant instructions to achieve that, but we don't know neither how or where we do it.

How do I sign Jars when exporting an Eclipse RCP product?

Upvotes: 0

Views: 206

Answers (1)

HelloThere12345
HelloThere12345

Reputation: 1950

Please take a look at the documentation. There it is described very well, including examples.

https://ant.apache.org/manual/Tasks/signjar.html

Upvotes: 1

Related Questions