File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed
gradle-conventions/src/main/kotlin Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2023-2024 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
2
+ * Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
5
import util.*
@@ -26,7 +26,8 @@ if (isPublicModule) {
26
26
fun PublishingExtension.configurePublication () {
27
27
repositories {
28
28
configureSonatypeRepository()
29
- configureSpaceRepository()
29
+ configureSpaceEapRepository()
30
+ configureSpaceGrpcRepository()
30
31
configureForIdeRepository()
31
32
configureLocalDevRepository()
32
33
}
@@ -110,12 +111,21 @@ fun MavenPom.configureMavenCentralMetadata() {
110
111
}
111
112
}
112
113
113
- fun RepositoryHandler.configureSpaceRepository () {
114
+ fun RepositoryHandler.configureSpaceEapRepository () {
114
115
configureRepository(project) {
115
116
username = " SPACE_USERNAME"
116
117
password = " SPACE_PASSWORD"
117
118
name = " space"
118
- url = " https://maven.pkg.jetbrains.space/public/p/krpc/maven"
119
+ url = " https://maven.pkg.jetbrains.space/public/p/krpc/eap"
120
+ }
121
+ }
122
+
123
+ fun RepositoryHandler.configureSpaceGrpcRepository () {
124
+ configureRepository(project) {
125
+ username = " SPACE_USERNAME"
126
+ password = " SPACE_PASSWORD"
127
+ name = " grpc"
128
+ url = " https://maven.pkg.jetbrains.space/public/p/krpc/grpc"
119
129
}
120
130
}
121
131
You can’t perform that action at this time.
0 commit comments