Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions metadata-dao-impl/kafka-producer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@ dependencies {
annotationProcessor externalDependency.lombok

testCompile externalDependency.mockito

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}
9 changes: 9 additions & 0 deletions metadata-events/mxe-registration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ dependencies {
testCompile project(':metadata-testing:metadata-test-utils')

avroOriginal project(path: ':metadata-models', configuration: 'avroSchema')

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}

// copy original MXE avro schema from metadata-models to resources
Expand Down
9 changes: 9 additions & 0 deletions metadata-events/mxe-utils-avro-1.7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ dependencies {

testCompile externalDependency.gmaDaoApi
testCompile project(':metadata-testing:metadata-test-utils')

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}

// copy original MXE avro schema from metadata-events to resources
Expand Down
9 changes: 9 additions & 0 deletions metadata-ingestion-examples/common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,13 @@ dependencies {
annotationProcessor externalDependency.lombok

runtime externalDependency.logbackClassic

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}
9 changes: 9 additions & 0 deletions metadata-ingestion-examples/kafka-etl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ dependencies {
annotationProcessor externalDependency.lombok

runtime externalDependency.logbackClassic

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}

bootJar {
Expand Down
10 changes: 10 additions & 0 deletions metadata-ingestion-examples/mce-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ dependencies {

annotationProcessor externalDependency.lombok
annotationProcessor externalDependency.picocli

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}

}

bootJar {
Expand Down
9 changes: 9 additions & 0 deletions metadata-io/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ dependencies {
testCompile project(':test-models')

testAnnotationProcessor externalDependency.lombok

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}

test {
Expand Down
9 changes: 9 additions & 0 deletions metadata-service/restli-servlet-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ configurations {
}

dependencies {
constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}

compile project(':metadata-service:restli-api')
compile project(path: ':metadata-service:restli-api', configuration: 'dataTemplate')
compile project(':li-utils')
Expand Down
9 changes: 9 additions & 0 deletions metadata-testing/metadata-models-test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,13 @@ dependencies {
compile externalDependency.jacksonDataBind
compile externalDependency.lombok
compile externalDependency.neo4jHarness

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}
9 changes: 9 additions & 0 deletions metadata-testing/metadata-test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,13 @@ dependencies {
compile externalDependency.jacksonDataBind
compile externalDependency.lombok
compile externalDependency.neo4jHarness

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}
}
10 changes: 10 additions & 0 deletions metadata-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,14 @@ dependencies {

testCompile project(':test-models')
testCompile project(':metadata-testing:metadata-test-utils')

constraints {
implementation("org.apache.logging.log4j:log4j-core:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
implementation("org.apache.logging.log4j:log4j-api:2.15.0") {
because("previous versions are vulnerable to CVE-2021-44228")
}
}

}