Skip to content

Commit 1dd211b

Browse files
committed
Fix pgp sign
Previous commit didn't make it work.
1 parent ca976ab commit 1dd211b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pipeline {
2525
sh '''
2626
mavenArgs="clean verify --batch-mode -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -Dtycho.p2.baselineMode=failCommon"
2727
if [[ ${BRANCH_NAME} == master ]] || [[ ${BRANCH_NAME} =~ m2e-[0-9]+\\.[0-9]+\\.x ]]; then
28-
mvn ${mavenArgs} -Peclipse-sign,its -DDtycho.pgp.signer.bc.secretKeys="${KEYRING}" -Dgpg.passphrase="${KEYRING_PASSPHRASE}" -Dgpg.keyname="011C526F29B2CE79"
28+
mvn ${mavenArgs} -Peclipse-sign,its -DDtycho.pgp.signer.bc.secretKeys="${KEYRING}" -Dgpg.passphrase="${KEYRING_PASSPHRASE}"
2929
else
3030
# Clear KEYRING_PASSPHRASE environment variable
3131
export KEYRING_PASSPHRASE='EMPTY'

org.eclipse.m2e.repository/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
<configuration>
8989
<signer>bc</signer>
9090
<skipIfJarsigned>true</skipIfJarsigned>
91+
<keyname>011C526F29B2CE79</keyname>
9192
</configuration>
9293
</execution>
9394
</executions>

0 commit comments

Comments
 (0)