Skip to content

Commit

Permalink
fix typo, potentially fix Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Nov 1, 2018
1 parent 4ea88de commit 84b8fe3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Jenkinsfile
Expand Up @@ -7,7 +7,11 @@ node {

sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build publish"
sh "./gradlew build --refresh-dependencies"

stage 'Publish"
sh "./gradlew publish"
stage "Archive artifacts"
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -203,7 +203,7 @@ task pomf(dependsOn: setupPomf) {
}
}

task buildEngima(type: Zip) {
task buildEnigma(type: Zip) {
from mappingsDir
include "**/*"
archiveName "pomf-enigma-${pomfVersion}.zip"
Expand Down Expand Up @@ -309,7 +309,7 @@ task compressTiny(dependsOn: "mergeTiny", type: FileOutput){
}

tasks.build.dependsOn "compressTiny"
tasks.build.dependsOn "buildEngima"
tasks.build.dependsOn "buildEnigma"

task downloadMcLibs(dependsOn: downloadWantedVersionManifest) {
inputs.files versionFile
Expand Down Expand Up @@ -398,8 +398,8 @@ publishing {
artifact (compressTiny.fileOutput) {
classifier "tiny"
}
artifact (buildEngima) {
classifier "engima"
artifact (buildEnigma) {
classifier "enigma"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip

0 comments on commit 84b8fe3

Please sign in to comment.