Skip to content

Commit

Permalink
[AUTO] Increment version to 2.2.2-SNAPSHOT (#244)
Browse files Browse the repository at this point in the history
* Increment version to 2.2.2-SNAPSHOT

Signed-off-by: opensearch-ci-bot <opensearch-infra@amazon.com>

* Disable detekt due to snakeyml vulnerability

Signed-off-by: Mohammad Qureshi <47198598+qreshi@users.noreply.github.com>

Signed-off-by: opensearch-ci-bot <opensearch-infra@amazon.com>
Signed-off-by: Mohammad Qureshi <47198598+qreshi@users.noreply.github.com>
Co-authored-by: opensearch-ci-bot <opensearch-infra@amazon.com>
Co-authored-by: Mohammad Qureshi <47198598+qreshi@users.noreply.github.com>
  • Loading branch information
3 people authored Dec 9, 2022
1 parent 8205e9f commit 35e57ee
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
buildscript {
ext {
opensearch_group = "org.opensearch"
opensearch_version = System.getProperty("opensearch.version", "2.2.1-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "2.2.2-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
kotlin_version = System.getProperty("kotlin.version", "1.6.10")
Expand All @@ -23,7 +23,7 @@ buildscript {
classpath "${opensearch_group}.gradle:build-tools:${opensearch_version}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
classpath "org.jetbrains.kotlin:kotlin-allopen:${kotlin_version}"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.20.0-RC1"
// classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.20.0-RC1"
}
}

Expand Down Expand Up @@ -59,7 +59,7 @@ apply plugin: 'jacoco'
apply plugin: 'signing'
apply plugin: 'maven-publish'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'io.gitlab.arturbosch.detekt'
// apply plugin: 'io.gitlab.arturbosch.detekt'
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'org.jetbrains.kotlin.plugin.allopen'
apply plugin: 'opensearch.repositories'
Expand Down Expand Up @@ -103,10 +103,12 @@ spotless {
eclipse().configFile rootProject.file('.eclipseformat.xml')
}
}
detekt {

// TODO: enable detekt only when snakeyaml vulnerability is fixed
/*detekt {
config = files("detekt.yml")
buildUponDefaultConfig = true
}
}*/

task ktlint(type: JavaExec, group: "verification") {
description = "Check Kotlin code style."
Expand Down

0 comments on commit 35e57ee

Please sign in to comment.