Skip to content

Commit

Permalink
Merge pull request #472 from sejli/CVE-fix-1.3.6 (#473)
Browse files Browse the repository at this point in the history
Updating Kotlin and Jsoup

(cherry picked from commit 50eac17)
  • Loading branch information
sejli committed Oct 3, 2022
1 parent f0583a8 commit 1dfa5aa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions reports-scheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
opensearch_build = opensearch_version.replaceAll(/(\.\d)([^\d]*)$/, '$1.0$2')
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
kotlin_version = System.getProperty("kotlin.version", "1.4.0")
kotlin_version = System.getProperty("kotlin.version", "1.6.0")
}

repositories {
Expand All @@ -30,7 +30,7 @@ buildscript {
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.12.0"
classpath "org.jacoco:org.jacoco.agent:0.8.5"
classpath "org.jacoco:org.jacoco.agent:0.8.7"
}
}

Expand Down Expand Up @@ -111,6 +111,7 @@ allprojects {
plugins.withId('java') {
sourceCompatibility = targetCompatibility = "1.8"
}
jacoco.toolVersion = "0.8.7"
}

repositories {
Expand All @@ -130,7 +131,7 @@ dependencies {
compile group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
compile "org.json:json:20180813"
compile group: 'com.github.wnameless', name: 'json-flattener', version: '0.1.0'
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'org.jsoup:jsoup:1.15.3'

testImplementation(
'org.assertj:assertj-core:3.16.1',
Expand Down

0 comments on commit 1dfa5aa

Please sign in to comment.