From 55ac39abc3e27d2d6d8cdb93860236bb5950549c Mon Sep 17 00:00:00 2001 From: RednedEpic Date: Sun, 27 Feb 2022 17:31:58 -0600 Subject: [PATCH] Exclude the right jars --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 14e0fd4e3..09bccf5d2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { } post { success { - archiveArtifacts artifacts: 'bootstrap/**/build/libs/*.jar', excludes: 'bootstrap/**/build/libs/original-*.jar', fingerprint: true + archiveArtifacts artifacts: 'bootstrap/**/build/libs/*.jar', excludes: 'bootstrap/**/build/libs/*-sources.jar', excludes: 'bootstrap/**/build/libs/*-unshaded.jar', fingerprint: true } } }