Skip to content

Commit 8907fc0

Browse files
hooquetJialeHe
authored andcommitted
KE-40314 remove username and password
1 parent 30fc9ea commit 8907fc0

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,12 @@ configure(subprojects) {project -> {
6060
maven {
6161
url = release_url
6262
name = 'kyligence'
63-
credentials {
64-
username 'kyligence'
65-
password 'Kyligence@2022'
66-
}
63+
if (project.hasProperty('kyligenceRepoUsername')) {
64+
credentials {
65+
username "$kyligenceRepoUsername"
66+
password "$kyligenceRepoPassword"
67+
}
68+
}
6769
}
6870
}
6971
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22
org.gradle.parallel=true
3-
version=2.6.1-kylin-r3
3+
version=2.6.1-kylin-r4
44

55
group_id=org.springframework.session
66
artifact_id=spring-session-core

0 commit comments

Comments
 (0)