File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
tools/language-parser-builder Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1+ buildscript {
2+ configurations.all {
3+ resolutionStrategy {
4+ eachDependency {
5+ if (requested.group == " org.jetbrains.kotlin" && requested.name == " kotlin-compiler-embeddable" ) {
6+ useTarget(" org.jetbrains.kotlin:kotlin-compiler-embeddable:2.2.10" )
7+ }
8+ }
9+ }
10+ }
11+ }
112plugins {
213 id(" org.openrewrite.build.root" ) version(" latest.release" )
314 id(" org.openrewrite.build.java-base" ) version(" latest.release" )
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
22
33plugins {
44 id(" org.openrewrite.build.language-library" )
5- kotlin(" jvm" ) version " 2.2.0 "
5+ kotlin(" jvm" ) version " 2.2.10 "
66}
77
8- val kotlinVersion = " 2.2.0 "
8+ val kotlinVersion = " 2.2.10 "
99
1010dependencies {
1111 compileOnly(project(" :rewrite-core" ))
Original file line number Diff line number Diff line change 1+ buildscript {
2+ configurations.all {
3+ resolutionStrategy {
4+ eachDependency {
5+ if (requested.group == " org.jetbrains.kotlin" && requested.name == " kotlin-compiler-embeddable" ) {
6+ useTarget(" org.jetbrains.kotlin:kotlin-compiler-embeddable:2.2.10" )
7+ }
8+ }
9+ }
10+ }
11+ }
112plugins {
213 id(" org.openrewrite.build.language-library" ) version(" latest.release" )
314}
You can’t perform that action at this time.
0 commit comments