diff options
author | Phil Burk <[email protected]> | 2021-09-06 14:19:13 -0700 |
---|---|---|
committer | Phil Burk <[email protected]> | 2021-09-06 14:20:48 -0700 |
commit | edfc73a107a368ec084eb364a62db3b580987a4b (patch) | |
tree | 44feb1494b4a176b8c484c6644deb9d5813b9b2c /build.gradle | |
parent | d33fb2c959fff6471dc48434b37b01ac98874e82 (diff) |
Remove SLF4J from tests and gradle
It was an unnecessary dependency.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 0703a89..d8f3345 100644 --- a/build.gradle +++ b/build.gradle @@ -17,12 +17,6 @@ repositories { dependencies { testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2' - implementation 'org.slf4j:slf4j-api:1.7.25' - - // I'm unsure weather or not to keep the logging implementation here and not as a 'testImplementation', as libraries - // aren't usually meant to be ran. -// implementation 'org.slf4j:slf4j-log4j12:1.7.25' - implementation fileTree(dir: 'libs', include: '*.jar') } |