Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #229 from BlacCello/fix-vuln
Browse files Browse the repository at this point in the history
Fix vulnerabilities in transitive dependencies
  • Loading branch information
davidmc24 authored May 3, 2023
2 parents 55608b3 + 036875f commit 92a6fd9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
// support.

group = "com.github.davidmc24.gradle.plugin"
version = "1.7.1-SNAPSHOT"
version = "1.7.1"

def isCI = System.getenv("CI") == "true"

Expand Down Expand Up @@ -52,6 +52,14 @@ task createClasspathManifest {
dependencies {
implementation localGroovy()
implementation "org.apache.avro:avro-compiler:${compileAvroVersion}"
constraints {
implementation ('com.fasterxml.jackson.core:jackson-databind:2.12.7.1') {
because 'previous versions have vulnerabilities: CVE-2022-42004, CVE-2022-42003'
}
implementation ('org.apache.commons:commons-text:1.10.0') {
because 'previous versions have vulnerability: CVE-2022-42889'
}
}
testImplementation "org.spockframework:spock-core:2.0-M5-groovy-3.0"
testImplementation gradleTestKit()
testImplementation "uk.co.datumedge:hamcrest-json:0.2"
Expand Down

0 comments on commit 92a6fd9

Please sign in to comment.