Questions tagged [maven-jarsigner-plugin]

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

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

The documentation can be found at http://maven.apache.org/plugins/maven-jarsigner-plugin/

10 questions
2
votes
1 answer

How to remove signature from dependency jar?

I have a Maven project foo, which is a webstart. In order to be distributable via browser, the contents need to be jarsigned, which I do using maven-jarsigner-plugin: org.apache.maven.plugins
amphibient
  • 29,770
  • 54
  • 146
  • 240
2
votes
0 answers

Maven execute plugin just before creating war but after archiving classes

My main problem is I have to sign all the JARs of WEB-INF\lib folder. So this is what I have done:- Enabled archiveClasses option to package classes also into JAR Added JAR-Signer Plugin and setting the archive directory to…
kleash
  • 1,211
  • 1
  • 12
  • 31
1
vote
1 answer

Maven jarsigner plugin configuration not working

I am trying to sign a jar file with the following pom.xml config. org.apache.maven.plugins maven-jarsigner-plugin
Igor
  • 323
  • 2
  • 13
1
vote
0 answers

jarsigner is not working on JDK 1.7

We are using JDK 1.7 for our project, it was working fine till last week but now it is failing with below error, jarsigner: unable to sign jar: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake I came to know that…
1
vote
1 answer

Use jarsign plugin with assembly plugin in Maven 3

I'm using assembly plugin to package a list of applets into zip in one of modules with my maven project. here is the pom.xml:
David Zhao
  • 4,284
  • 11
  • 46
  • 60
0
votes
2 answers

How to Sign multiple Jars with Maven JarSigner

I have a program that generates two JAR files from the maven-assembly-plugin. I want to use the maven-jarsigner-plugin to sign both jars. When I apply the the basic jarsigner, it only signs one of the JARS. When I add the archive directory…
Tacitus86
  • 1,314
  • 2
  • 14
  • 36
0
votes
1 answer

VSTS using maven executes a unwanted NO-Params verify at the end

My VSTS maven build definition requires parameters when running the verify. First I run a "mvn package verify -Dparam1 -Dparam2 -Dparam3" which succeeds. However, afther the "package verify" VSTS runs an unwanted mvn verify at the end with…
0
votes
1 answer

jarsigner plugin and special characters in storepass

I am using maven-jarsigner-plugin to sign some webstart jars: org.apache.maven.plugins maven-jarsigner-plugin 1.4
amphibient
  • 29,770
  • 54
  • 146
  • 240
0
votes
1 answer

Maven jarsign, all jars that start with "test"

How to modify the following maven plugin, so it will sign all jars that start with "test" example: test-123.jar ojdbc6.jar not-me.jar should sign only test-123.jar org.apache.maven.plugins
xMilos
  • 1,519
  • 4
  • 21
  • 36
-3
votes
1 answer

exclude in maven-jarsigner-plugin doesn't work

I have configured the jar signer plugin in my Project org.apache.maven.plugins maven-jarsigner-plugin 1.4
Jens
  • 67,715
  • 15
  • 98
  • 113