We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08399b8 commit 2ab510aCopy full SHA for 2ab510a
build.gradle.kts
@@ -23,6 +23,7 @@ if (isCI()) {
23
version = tag
24
logger.info("Release: $tag")
25
}
26
+
27
"push" -> {
28
val commit = System.getenv("GITHUB_SHA")
29
if (commit.isNullOrBlank()) {
@@ -39,6 +40,9 @@ if (isCI()) {
39
40
repositories {
41
google()
42
mavenCentral()
43
+ maven {
44
+ url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
45
+ }
46
47
48
afterEvaluate {
settings.gradle.kts
@@ -3,9 +3,6 @@ pluginManagement {
3
gradlePluginPortal()
4
5
6
- maven {
7
- url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
8
- }
9
10
resolutionStrategy {
11
eachPlugin {
0 commit comments