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 11/*
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.
33 */
44
55import util.*
@@ -26,7 +26,8 @@ if (isPublicModule) {
2626fun PublishingExtension.configurePublication () {
2727 repositories {
2828 configureSonatypeRepository()
29- configureSpaceRepository()
29+ configureSpaceEapRepository()
30+ configureSpaceGrpcRepository()
3031 configureForIdeRepository()
3132 configureLocalDevRepository()
3233 }
@@ -110,12 +111,21 @@ fun MavenPom.configureMavenCentralMetadata() {
110111 }
111112}
112113
113- fun RepositoryHandler.configureSpaceRepository () {
114+ fun RepositoryHandler.configureSpaceEapRepository () {
114115 configureRepository(project) {
115116 username = " SPACE_USERNAME"
116117 password = " SPACE_PASSWORD"
117118 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"
119129 }
120130}
121131
You can’t perform that action at this time.
0 commit comments