Skip to content

Commit d476eb7

Browse files
committed
HHH-8601 remove slf4j infavor of log4j
1 parent d1aef40 commit d476eb7

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ subprojects { subProject ->
124124
testCompile( libraries.byteman_install )
125125
testCompile( libraries.byteman_bmunit )
126126

127-
testRuntime( libraries.slf4j_api )
128-
testRuntime( libraries.slf4j_log4j12 )
127+
testRuntime( libraries.log4j )
129128
testRuntime( libraries.javassist )
130129
testRuntime( libraries.h2 )
131130

documentation/documentation.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ task buildTutorialZip(type: Zip) {
7979
from 'src/main/docbook/quickstart/tutorials'
8080
expand(
8181
version: project.version,
82-
slf4j: parent.slf4jVersion,
82+
slf4j: "1.7.5",
8383
junit: parent.junitVersion,
8484
h2: parent.h2Version
8585
)

libraries.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
2828
ext {
2929

30-
slf4jVersion = '1.7.5'
3130
junitVersion = '4.11'
3231
h2Version = '1.2.145'
3332
bytemanVersion = '2.1.2'
@@ -80,9 +79,7 @@ ext {
8079
// ~~~~~~~~~~~~~~~~~~~~~~~~~~ testing
8180

8281
// logging for testing
83-
slf4j_api: "org.slf4j:slf4j-api:${slf4jVersion}",
84-
slf4j_log4j12: "org.slf4j:slf4j-log4j12:${slf4jVersion}",
85-
82+
log4j: "log4j:log4j:1.2.17",
8683
junit: "junit:junit:${junitVersion}",
8784
byteman: "org.jboss.byteman:byteman:${bytemanVersion}",
8885
byteman_install: "org.jboss.byteman:byteman-install:${bytemanVersion}",

0 commit comments

Comments
 (0)