tycho-gpg:sign-p2-artifacts
Full name:
org.eclipse.tycho:tycho-gpg-plugin:3.0.1:sign-p2-artifacts
Description:
artifacts.xml
) to add PGP
signatures for each included artifact. Signatures are added as
pgp.signatures
property on the artifact metadata, in
armored form; and public keys of the signers are added as
pgp.publicKeys
property on the repository metadata, in
armored form.Attributes:
- Requires a Maven project to be executed.
- The goal is not marked as thread-safe and thus does not support parallel builds.
- Binds by default to the lifecycle phase:
prepare-package
.
Optional Parameters
Name | Type | Since | Description |
---|---|---|---|
<addPublicKeyToRepo> |
boolean |
- |
(no description) Default value is: true . |
<addPublicKeysToArtifacts> |
boolean |
- |
(no description) Default value is: true . |
<defaultKeyring> |
boolean |
1.2 |
Whether to add the default keyrings from gpg's home directory to
the list of used keyrings. Default value is: true .User property is: gpg.defaultKeyring . |
<executable> |
String |
1.1 |
The path to the GnuPG executable to use for artifact signing.
Defaults to either "gpg" or "gpg.exe" depending on the operating
system. User property is: gpg.executable . |
<gpgArguments> |
List |
1.5 |
Sets the arguments to be passed to gpg. Example:
<gpgArguments> <arg>--no-random-seed-file</arg> <arg>--no-permission-warning</arg> </gpgArguments> |
<homedir> |
File |
1.0 |
The directory from which gpg will load keyrings. If not specified,
gpg will use the value configured for its installation, e.g.
~/.gnupg or %APPDATA%/gnupg .User property is: gpg.homedir . |
<keyname> |
String |
- |
The "name" of the key to sign with. Passed to gpg as
--local-user .User property is: gpg.keyname . |
<lockMode> |
String |
1.5 |
The lock mode to use when invoking gpg. By default no lock mode
will be specified. Valid values are once ,
multiple and never . The lock mode gets
translated into the corresponding --lock-___ command
line argument. Improper usage of this option may lead to data and
key corruption.User property is: gpg.lockMode . |
<passphrase> |
String |
- |
The passphrase to use when signing. If not given, look up the value
under Maven settings using server id at 'passphraseServerKey'
configuration. User property is: gpg.passphrase . |
<passphraseServerId> |
String |
1.6 |
Server id to lookup the passphrase under Maven settings. Default value is: gpg.passphrase .User property is: gpg.passphraseServerId . |
<publicKeyring> |
String |
1.2 |
The path to a public keyring to add to the list of keyrings. By
default, only the pubring.gpg from gpg's home
directory is considered. Use this option (and
defaultKeyring if required) to use a different public
key. Note: Relative paths are resolved against gpg's home
directory, not the project base directory.User property is: gpg.publicKeyring . |
<repository> |
File |
- |
(no description) Default value is: ${project.build.directory}/repository . |
<secretKeyring> |
String |
1.2 |
The path to a secret keyring to add to the list of keyrings. By
default, only the User property is: gpg.secretKeyring . |
<skipIfJarsigned> |
boolean |
- |
Configures to true to generate PGP signature only for
artifacts that do not already contain signatures
files from jarsigner.Default value is: true . |
<useAgent> |
boolean |
- |
Passes --use-agent or --no-use-agent to
gpg. If using an agent, the passphrase is optional as the agent
will provide it. For gpg2, specify true as --no-use-agent was
removed in gpg2 and doesn't ask for a passphrase anymore.Default value is: true .User property is: gpg.useagent . |
Parameter Details
<addPublicKeyToRepo>
- Type:
boolean
- Required:
No
- Default:
true
<addPublicKeysToArtifacts>
- Type:
boolean
- Required:
No
- Default:
true
<defaultKeyring>
- Type:
boolean
- Since:
1.2
- Required:
No
- User Property:
gpg.defaultKeyring
- Default:
true
<executable>
- Type:
java.lang.String
- Since:
1.1
- Required:
No
- User Property:
gpg.executable
<gpgArguments>
<gpgArguments> <arg>--no-random-seed-file</arg> <arg>--no-permission-warning</arg> </gpgArguments>
- Type:
java.util.List
- Since:
1.5
- Required:
No
<homedir>
~/.gnupg
or %APPDATA%/gnupg
.- Type:
java.io.File
- Since:
1.0
- Required:
No
- User Property:
gpg.homedir
<keyname>
--local-user
.- Type:
java.lang.String
- Required:
No
- User Property:
gpg.keyname
<lockMode>
once
,
multiple
and never
. The lock mode gets
translated into the corresponding --lock-___
command
line argument. Improper usage of this option may lead to data and
key corruption.- Type:
java.lang.String
- Since:
1.5
- Required:
No
- User Property:
gpg.lockMode
<passphrase>
- Type:
java.lang.String
- Required:
No
- User Property:
gpg.passphrase
<passphraseServerId>
- Type:
java.lang.String
- Since:
1.6
- Required:
No
- User Property:
gpg.passphraseServerId
- Default:
gpg.passphrase
<publicKeyring>
pubring.gpg
from gpg's home
directory is considered. Use this option (and
defaultKeyring
if required) to use a different public
key. Note: Relative paths are resolved against gpg's home
directory, not the project base directory.- Type:
java.lang.String
- Since:
1.2
- Required:
No
- User Property:
gpg.publicKeyring
<repository>
- Type:
java.io.File
- Required:
No
- Default:
${project.build.directory}/repository
<secretKeyring>
The path to a secret keyring to add to the list of keyrings. By
default, only the secring.gpg
from gpg's home
directory is considered. Use this option (in combination with
publicKeyring
and defaultKeyring
if
required) to use a different secret key. Note: Relative
paths are resolved against gpg's home directory, not the project
base directory.
- Type:
java.lang.String
- Since:
1.2
- Required:
No
- User Property:
gpg.secretKeyring
<skipIfJarsigned>
true
to generate PGP signature only for
artifacts that do not already contain signatures
files from jarsigner.- Type:
boolean
- Required:
No
- Default:
true
<useAgent>
--use-agent
or --no-use-agent
to
gpg. If using an agent, the passphrase is optional as the agent
will provide it. For gpg2, specify true as --no-use-agent was
removed in gpg2 and doesn't ask for a passphrase anymore.- Type:
boolean
- Required:
No
- User Property:
gpg.useagent
- Default:
true