Skip to content

Commit

Permalink
[ISSUE #329]Missing Log4j dependency (#336)
Browse files Browse the repository at this point in the history
* [ISSUE #325]Update gradle configuration for publishing package to maven repository

* update build.gradle

* update build.gradle and gradle.properties

* update build.gradle and gradle.properties for publish to maven repository

* * update gradle version for instructions
* fix: dist task exception

* [ISSUE #329]Missing Log4j dependency
  • Loading branch information
xwm1992 authored May 10, 2021
1 parent 6724078 commit 61dc8e9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,14 @@ subprojects {
"org.slf4j:slf4j-api:1.7.30"
]

List log4j2 = [
"org.apache.logging.log4j:log4j-api:2.13.3",
"org.apache.logging.log4j:log4j-core:2.13.3",
"org.apache.logging.log4j:log4j-slf4j-impl:2.13.3",
"org.apache.logging.log4j:log4j-web:2.13.3",
"com.lmax:disruptor:3.4.2"
]


List common = [
"commons-io:commons-io:2.4",
Expand All @@ -151,8 +159,8 @@ subprojects {
]

dependencies {
implementation apache_commons, guava, log, fastjson, jackson, common, httpclient, netty
testImplementation apache_commons, guava, log, fastjson, jackson, common, junit, assertj, mock, httpclient, netty
implementation apache_commons, guava, log, log4j2, fastjson, jackson, common, httpclient, netty
testImplementation apache_commons, guava, log, log4j2, fastjson, jackson, common, junit, assertj, mock, httpclient, netty
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.11.0'
spotbugsPlugins 'com.mebigfatguy.fb-contrib:fb-contrib:7.4.7'
}
Expand Down

0 comments on commit 61dc8e9

Please sign in to comment.