Skip to content

Commit f472d0d

Browse files
committed
disable detekt so that snakeyaml <= 1.31 is not used
1 parent 5a87167 commit f472d0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
ext {
88
opensearch_group = "org.opensearch"
99
opensearch_version = System.getProperty("opensearch.version", "1.3.6-SNAPSHOT")
10-
kotlin_version = System.getProperty("kotlin.version", "1.4.32")
10+
kotlin_version = System.getProperty("kotlin.version", "1.6.0")
1111
}
1212

1313
repositories {
@@ -69,7 +69,7 @@ dependencies {
6969
compileOnly "org.opensearch.client:opensearch-rest-high-level-client:${opensearch_version}"
7070
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
7171
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
72-
compileOnly "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3" // ${kotlin_version} does not work for coroutines
72+
compileOnly "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0" // ${kotlin_version} does not work for coroutines
7373
testCompile "org.opensearch.test:framework:${opensearch_version}"
7474
testCompile "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"
7575
testCompile "org.mockito:mockito-core:3.10.0"
@@ -78,7 +78,7 @@ dependencies {
7878
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
7979
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
8080

81-
ktlint "com.pinterest:ktlint:0.41.0"
81+
ktlint "com.pinterest:ktlint:0.45.1"
8282
}
8383

8484
test {

0 commit comments

Comments
 (0)