From eb28d6c882d8aaa91304e00f4e277759aadffb81 Mon Sep 17 00:00:00 2001 From: Tim203 Date: Sun, 5 Dec 2021 22:41:59 +0100 Subject: [PATCH] Exclude the api module from the artifacts --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a19f3bec..d4657f1e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { } post { success { - archiveArtifacts artifacts: '**/target/floodgate-*.jar', excludes: "**/target/floodgate-(api|core).jar", fingerprint: true + archiveArtifacts artifacts: '**/target/floodgate-*.jar', excludes: "**/target/floodgate-api.jar,**/target/floodgate-core.jar", fingerprint: true } } }