Skip to content

Commit 6b625e0

Browse files
author
Daniel Lundin
committed
Remove logback dependency
slf4j allows the user to choose her own implementation, so including logback isn't necessary.
1 parent 1aa0242 commit 6b625e0

File tree

2 files changed

+14
-24
lines changed

2 files changed

+14
-24
lines changed

pom.xml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,6 @@
8181
</dependency>
8282

8383

84-
<dependency>
85-
<groupId>ch.qos.logback</groupId>
86-
<artifactId>logback-core</artifactId>
87-
<version>${version.logback}</version>
88-
</dependency>
89-
<dependency>
90-
<groupId>ch.qos.logback</groupId>
91-
<artifactId>logback-classic</artifactId>
92-
<version>${version.logback}</version>
93-
</dependency>
9484
<dependency>
9585
<groupId>org.slf4j</groupId>
9686
<artifactId>slf4j-api</artifactId>
@@ -106,6 +96,20 @@
10696

10797

10898
<!-- /// Test /////////////////////////// -->
99+
<dependency>
100+
<groupId>ch.qos.logback</groupId>
101+
<artifactId>logback-core</artifactId>
102+
<version>${version.logback}</version>
103+
<scope>test</scope>
104+
</dependency>
105+
106+
<dependency>
107+
<groupId>ch.qos.logback</groupId>
108+
<artifactId>logback-classic</artifactId>
109+
<version>${version.logback}</version>
110+
<scope>test</scope>
111+
</dependency>
112+
109113
<dependency>
110114
<groupId>org.testng</groupId>
111115
<artifactId>testng</artifactId>
@@ -140,7 +144,6 @@
140144
<scope>test</scope>
141145
</dependency>
142146

143-
144147
</dependencies>
145148

146149

src/main/resources/logback.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)