From 4a0cfcd2c3a42c082c15c684ed57dbc05be69c61 Mon Sep 17 00:00:00 2001 From: Konicai <71294714+Konicai@users.noreply.github.com> Date: Sat, 4 May 2024 18:11:30 -0400 Subject: [PATCH] exclude some jars that don't need to be archived --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9dfe2714..5d4363fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { post { success { archiveArtifacts artifacts: '**/build/libs/floodgate-*.jar', - excludes: '**/floodgate-parent-*.jar,**/floodgate-api.jar,**/floodgate-core.jar', + excludes: '**/floodgate-parent-*.jar,**/floodgate-api*.jar,**/floodgate-core*.jar,**/floodgate-*-database.jar', fingerprint: true } }