diff options
author | LexManos <LexManos@gmail.com> | 2018-11-02 13:00:07 -0700 |
---|---|---|
committer | LexManos <LexManos@gmail.com> | 2018-11-02 13:00:07 -0700 |
commit | a9822be370570be5976c3b58026f60c2e64c89b4 (patch) | |
tree | 1ccac7e6d4f7c89616cd07f39811d595b887eaa5 | |
parent | d3ca57cf572010acecbd93266d93df27080f8ac7 (diff) | |
download | Artifactural-a9822be370570be5976c3b58026f60c2e64c89b4.tar.gz Artifactural-a9822be370570be5976c3b58026f60c2e64c89b4.tar.bz2 Artifactural-a9822be370570be5976c3b58026f60c2e64c89b4.zip |
Fix maven username and password.
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 6e84311..ffbcee9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { FORGE_MAVEN = credentials('forge-maven-forge-user') } steps { - sh './gradlew ${GRADLE_ARGS} publish -PforgeMavenUser=${FORGE_MAVEN_USR} -PforgeMavenPassword=${FORGE_MAVEN_PSW}' + sh './gradlew ${GRADLE_ARGS} publish -PmavenUser=${FORGE_MAVEN_USR} -PmavenPassword=${FORGE_MAVEN_PSW}' sh 'curl --user ${FORGE_MAVEN} http://files.minecraftforge.net/maven/manage/promote/latest/net.minecraftforge.artifactural/${MYVERSION}' } } |