We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30fc9ea commit 8907fc0Copy full SHA for 8907fc0
build.gradle
@@ -60,10 +60,12 @@ configure(subprojects) {project -> {
60
maven {
61
url = release_url
62
name = 'kyligence'
63
- credentials {
64
- username 'kyligence'
65
- password 'Kyligence@2022'
66
- }
+ if (project.hasProperty('kyligenceRepoUsername')) {
+ credentials {
+ username "$kyligenceRepoUsername"
+ password "$kyligenceRepoPassword"
67
+ }
68
69
}
70
71
gradle.properties
@@ -1,6 +1,6 @@
1
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
2
org.gradle.parallel=true
3
-version=2.6.1-kylin-r3
+version=2.6.1-kylin-r4
4
5
group_id=org.springframework.session
6
artifact_id=spring-session-core
0 commit comments