Skip to content

Commit b0c202b

Browse files
Credentials are moved to env variables in gradle example
1 parent ea6c75f commit b0c202b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/gradle/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ repositories {
1010
maven {
1111
url = uri("https://nexus-repo.corp.cloudlinux.com/repository/els_spring")
1212
credentials {
13-
username = "your-username"
14-
password = "your-password"
13+
username = findProperty('YOUR_USERNAME')
14+
password = findProperty('YOUR_PASSWORD')
1515
}
1616
}
1717
}

0 commit comments

Comments
 (0)