Skip to content

Commit 2ab510a

Browse files
committed
build: fix eap repo
1 parent 08399b8 commit 2ab510a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ if (isCI()) {
2323
version = tag
2424
logger.info("Release: $tag")
2525
}
26+
2627
"push" -> {
2728
val commit = System.getenv("GITHUB_SHA")
2829
if (commit.isNullOrBlank()) {
@@ -39,6 +40,9 @@ if (isCI()) {
3940
repositories {
4041
google()
4142
mavenCentral()
43+
maven {
44+
url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
45+
}
4246
}
4347

4448
afterEvaluate {

settings.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ pluginManagement {
33
gradlePluginPortal()
44
google()
55
mavenCentral()
6-
maven {
7-
url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
8-
}
96
}
107
resolutionStrategy {
118
eachPlugin {

0 commit comments

Comments
 (0)