Skip to content

Commit

Permalink
Logback dependency removed from core.
Browse files Browse the repository at this point in the history
  • Loading branch information
xdcrafts committed Jan 19, 2017
1 parent e6b39b5 commit 597c5f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 0 additions & 4 deletions flower-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,5 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
import com.github.xdcrafts.flower.core.impl.extensions.DefaultExtension;
import com.github.xdcrafts.flower.core.impl.flows.SyncFlow;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Arrays;
import java.util.Collections;
Expand All @@ -50,8 +48,6 @@
@SuppressWarnings("unchecked")
public class FlowerTest {

private static final Logger LOGGER = LoggerFactory.getLogger(FlowerTest.class);

private static final class ConclusionValue {
private final boolean success;
private final int steps;
Expand Down
5 changes: 5 additions & 0 deletions flower-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down

0 comments on commit 597c5f5

Please sign in to comment.