fix(docker): Upgrade to 4.1.44 netty-all library (#2784)

This commit is contained in:
Dexter Lee 2021-06-28 17:04:12 -07:00 committed by GitHub
parent 09bbcea0a8
commit 313da07447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View File

@ -121,19 +121,22 @@ allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'checkstyle'
configurations.all {
exclude group: "io.netty", module: "netty"
exclude group: "log4j", module: "log4j"
}
}
subprojects {
apply plugin: 'maven'
configurations.all {
exclude group: "io.netty", module: "netty"
exclude group: "log4j", module: "log4j"
}
plugins.withType(JavaPlugin) {
dependencies {
testCompile externalDependency.testng
constraints {
implementation('io.netty:netty-all:4.1.44.Final')
}
}
tasks.withType(Test) {

View File

@ -25,6 +25,7 @@ dependencies {
play('com.nimbusds:nimbus-jose-jwt:7.9')
play('com.typesafe.akka:akka-actor_2.11:2.5.16')
play('net.minidev:json-smart:2.4.1')
play('io.netty:netty-all:4.1.44.Final')
}
play project(":datahub-dao")
play project(":datahub-graphql-core")