Skip to content

Commit 53d23a5

Browse files
committed
Temporary fix for Kotlin ABI Validation
Artifact org.jetbrains.intellij.deps:asm-all is published only in Intellij Deps repository. Since the checkLegacyAbi and updateLegacyAbi updateLegacyAbi require this dependency since Kotlin 2.3. This is temporary fix until https://jetbrains.team/p/kt/reviews/23039/timeline is merged
1 parent 560ea27 commit 53d23a5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ buildscript {
1414
maven(url = "https://plugins.gradle.org/m2/")
1515
addDevRepositoryIfEnabled(this, project)
1616
mavenLocal()
17+
// temporary solution because ABI Validation uses asm-all from intellij-deps. Remove after merging https://jetbrains.team/p/kt/reviews/23039/timeline
18+
maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies")
1719
}
1820

1921
dependencies {
@@ -74,6 +76,9 @@ allprojects {
7476
google()
7577
mavenCentral()
7678
addDevRepositoryIfEnabled(this, project)
79+
80+
// temporary solution because ABI Validation uses asm-all from intellij-deps. Remove after merging https://jetbrains.team/p/kt/reviews/23039/timeline
81+
maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies")
7782
}
7883
}
7984

0 commit comments

Comments
 (0)