From aefb0df40920a30ba8e008dac55214d88a2d41b7 Mon Sep 17 00:00:00 2001 From: Tim203 Date: Sun, 5 Dec 2021 22:27:56 +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 bd5d8114..a19f3bec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { } post { success { - archiveArtifacts artifacts: '**/target/floodgate-*.jar', excludes: "**/target/floodgate-core.jar", fingerprint: true + archiveArtifacts artifacts: '**/target/floodgate-*.jar', excludes: "**/target/floodgate-(api|core).jar", fingerprint: true } } }