File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ buildscript {
2323 }
2424 opensearch_no_snapshot = opensearch_version. replace(" -SNAPSHOT" ," " )
2525 common_utils_version = System . getProperty(" common_utils.version" , opensearch_build)
26- kotlin_version = ' 1.9.25 '
26+ kotlin_version = ' 2.2.0 '
2727 }
2828
2929 repositories {
@@ -94,6 +94,16 @@ allprojects {
9494
9595 apply from : " $rootDir /build-tools/repositories.gradle"
9696
97+ configurations. all {
98+ resolutionStrategy {
99+ force " org.jetbrains.kotlin:kotlin-stdlib:${ kotlin_version} "
100+ force " org.jetbrains.kotlin:kotlin-stdlib-common:${ kotlin_version} "
101+ force " org.jetbrains.kotlin:kotlin-stdlib-jdk8:${ kotlin_version} "
102+ force " org.jetbrains.kotlin:kotlin-stdlib-jdk7:${ kotlin_version} "
103+ force " org.jetbrains.kotlin:kotlin-reflect:${ kotlin_version} "
104+ }
105+ }
106+
97107 tasks. withType(JavaCompile ) {
98108 sourceCompatibility = JavaVersion . VERSION_21
99109 targetCompatibility = JavaVersion . VERSION_21
You can’t perform that action at this time.
0 commit comments