Enabling debug for gradle

This commit is contained in:
Ziver Koc 2024-09-11 16:54:08 +02:00
parent 9666853ccf
commit 2abeb7c6b0
2 changed files with 3 additions and 3 deletions

2
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
}
environment {
gradleParams = "-Pversion=1.0.${BUILD_NUMBER}" // --no-daemon
gradleParams = "--info -Pversion=1.0.${BUILD_NUMBER}" // --no-daemon
}
stages {

View file

@ -12,8 +12,8 @@ publishing {
url = project.hasProperty('release') && !version.endsWith('SNAPSHOT') ? releasesRepoUrl : snapshotsRepoUrl
credentials {
username System.getenv('SONATYPE_NEXUS_USERNAME')
password System.getenv('SONATYPE_NEXUS_PASSWORD')
username System.getenv('mavenCentralUsername')
password System.getenv('mavenCentralPassword')
}
}
}