Add optional 'ch.qos.logback.logback-classic' dependency.

This commit is contained in:
John Blum
2019-06-28 16:15:13 -07:00
parent e179fa2678
commit 839a1c650f
2 changed files with 7 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ dependencies {
compile "org.projectlombok:lombok"
compile "org.springframework:spring-test"
compile "org.springframework.data:spring-data-geode"
optional "ch.qos.logback:logback-classic"
provided ("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";

View File

@@ -83,6 +83,12 @@
<artifactId>spring-data-geode</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>