We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecde992 commit d947e33Copy full SHA for d947e33
1 file changed
build.gradle
@@ -205,10 +205,8 @@ publishing {
205
name = 'igleeRepo'
206
url = "https://maven.iglee.fr/releases"
207
credentials {
208
- username = providers.environmentVariable("MAVEN_USERNAME")
209
- password = providers.environmentVariable("MAVEN_PASSWORD")
210
- println(username)
211
- println(password)
+ username = providers.environmentVariable("MAVEN_USERNAME").orNull
+ password = providers.environmentVariable("MAVEN_PASSWORD").orNull
212
}
213
authentication {
214
basic(BasicAuthentication)
0 commit comments