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 { environment {
gradleParams = "-Pversion=1.0.${BUILD_NUMBER}" // --no-daemon gradleParams = "--info -Pversion=1.0.${BUILD_NUMBER}" // --no-daemon
} }
stages { stages {

View file

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