0

What is difference between maven-jarsigner-plugin and maven-jar-plugin?

http://maven.apache.org/plugins/maven-jar-plugin/

http://maven.apache.org/plugins/maven-jarsigner-plugin/

In android, I use maven-jarsigner-plugin.today seeing another android project, parent POM uses a plugin named maven-jar-plugin.

1 I want to know their diff, and show a simple example

2 in android, which one is prefered.

xingjiu
  • 389
  • 3
  • 6

1 Answers1

0

The maven-jarsigner-plugin intention is, excerpt from the docs:

This plugin provides the capability to sign or verify a project artifact and attachments using jarsigner.

whereas the maven-jar-plugin is intention is to create jar files.

khmarbaise
  • 92,914
  • 28
  • 189
  • 235