From 727dea8b65d89c911e69e59cee145e9139585e52 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 22 Apr 2016 15:44:26 -0700 Subject: [PATCH] Force ordering between GPG and jarsigner jarsigner adds signatures by updating the file itself, so we have to run it before GPG plugin signs the bit, which happens in the 'verify' phase. The 'pre-integration-test' phase happens right after the 'package' phase and before the 'verify' phase, so this is adequate. See: https://groups.google.com/forum/#!msg/jenkinsci-users/POk8TOcwOM8/i5wn2a0MMwAJ --- war/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/war/pom.xml b/war/pom.xml index ae7732501b..0ca578db4d 100644 --- a/war/pom.xml +++ b/war/pom.xml @@ -558,7 +558,7 @@ THE SOFTWARE. signWar - verify + pre-integration-test sign -- GitLab