webstart:unsign
Full name:
org.codehaus.mojo:webstart-maven-plugin:1.0-beta-3:unsign
Description:
Unsigns a JAR, removing signatures. This code will hopefully be
moved into the jar plugin when stable enough.
Attributes:
- Requires a Maven project to be executed.
- Binds by default to the lifecycle phase: package.
Required Parameters
| Name |
Type |
Since |
Description |
| tempDirectory |
File |
- |
The directory location used for temporary storage of files used by
this mojo. Default value is: ${basedir}. |
Optional Parameters
| Name |
Type |
Since |
Description |
| jarPath |
File |
- |
Path of the jar to unsign. When specified, the finalName is
ignored. Default value is: ${project.build.directory}/${project.build.finalName}.${project.packaging}. |
| skip |
boolean |
- |
Set this to true to disable signing. Useful to speed
up build process in development environment. Default value is: false. |
| verbose |
boolean |
- |
Enable verbose mode. Default value is: false. |
Parameter Details
jarPath:
Path of the jar to unsign. When specified, the finalName is
ignored.
- Type: java.io.File
- Required: No
- Default: ${project.build.directory}/${project.build.finalName}.${project.packaging}
skip:
Set this to true to disable signing. Useful to speed
up build process in development environment.
- Type: boolean
- Required: No
- Expression: ${maven.jar.unsign.skip}
- Default: false
tempDirectory:
The directory location used for temporary storage of files used by
this mojo.
- Type: java.io.File
- Required: Yes
- Expression: ${tempdir}
- Default: ${basedir}
verbose:
Enable verbose mode.
- Type: boolean
- Required: No
- Expression: ${verbose}
- Default: false