diff --git a/Jenkinsfile b/Jenkinsfile index 44b04312c..32415df9d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,7 +61,7 @@ pipeline { } post { always { - archiveArtifacts artifacts: 'build/libs/**/*.jar', fingerprint: true + archiveArtifacts artifacts: 'projects/forge/build/libs/**/*.jar', fingerprint: true //junit 'build/test-results/*/*.xml' //jacoco sourcePattern: '**/src/*/java' } diff --git a/build.gradle b/build.gradle index 0d583aecc..eb90f1309 100644 --- a/build.gradle +++ b/build.gradle @@ -145,7 +145,7 @@ project(':forge') { if (branch != null && branch.endsWith('.x') && MC_VERSION.startsWith(branch.substring(0, branch.length() - 2))) //1.13.x branch = null SPEC_VERSION = tag - return "${tag}.${offset}${t -> if (branch != null) t << '-' + branch}" + return "${MC_VERSION}-${tag}.${offset}${t -> if (branch != null) t << '-' + branch}" } group = 'net.minecraftforge.test' //TODO: remove when we jenkins is working