From 44b07ec34fcc79d99280fd278bc55b7a2aa67d65 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sat, 23 Apr 2022 23:25:38 -0500 Subject: [PATCH] I hope this works --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f66eeb0..f68d079 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,8 +23,8 @@ pipeline { } post { always { - archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true - javadoc javadocDir: "build/docs/javadoc", keepAll: false + archiveArtifacts artifacts: "**/build/libs/*.jar", fingerprint: true + javadoc javadocDir: "**/build/docs/javadoc", keepAll: false discordSend description: "**Build:** ${env.BUILD_NUMBER}\n**Status:** ${currentBuild.currentResult}", enableArtifactsList: true, footer: "Built with Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, scmWebUrl: "https://github.com/plexusorg/Plex", showChangeset: true, title: env.JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL cleanWs() }