Skip to content

Commit

Permalink
handle sonatype Vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
HPSudip authored Sep 21, 2023
2 parents db1e516 + b566cfd commit 5270b55
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
allprojects {
ext.kotlin_version = '1.5.21'
ext.kotlin_version = '1.9.10'
ext.ktlint_version = '0.41.0'

// Version of JIPP & friends to publish
Expand All @@ -16,9 +16,9 @@ allprojects {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.4.30"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.9.0"
classpath "gradle.plugin.pl.squirrel:classycle-gradle-plugin:1.2"
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.1.0"
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.6.0"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.14.1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
6 changes: 3 additions & 3 deletions jipp-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ test {
}

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.9"
}

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
xml.required = true // coveralls plugin depends on xml format report
html.outputLocation = layout.buildDirectory.dir('reports/jacocoHtml')
}

afterEvaluate {
Expand Down
6 changes: 3 additions & 3 deletions jipp-pdl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ afterEvaluate {
test.finalizedBy jacocoTestReport

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.9"
}

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
xml.required = true // coveralls plugin depends on xml format report
html.outputLocation = layout.buildDirectory.dir('reports/jacocoHtml')
}

afterEvaluate {
Expand Down

0 comments on commit 5270b55

Please sign in to comment.