diff --git a/build.gradle.kts b/build.gradle.kts index 7598c46b4e2e..a3ef5e26c280 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -60,6 +60,8 @@ plugins { // define repo url val snapshotsRepoUrl = uri("https://repo-ofs.kyligence.com/repository/maven-snapshots/") val releasesRepoUrl = uri("https://repo-ofs.kyligence.com/repository/maven-releases/") +val asfTestNexusUsername: String by properties +val asfTestNexusPassword: String by properties allprojects { repositories { @@ -919,8 +921,8 @@ allprojects { maven { url = finalUrl credentials { - username = "guoliang.sun" - password = "19960301Sgl" + username = asfTestNexusUsername + password = asfTestNexusPassword } } }