diff options
author | Keuin <[email protected]> | 2020-12-26 13:17:08 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2020-12-26 13:17:08 +0800 |
commit | 9ce008141191b67cc00f871299891dbd874aff1f (patch) | |
tree | 6a1584133f4b4eba3ef54e7fad8f65050b84d7a9 /build.gradle | |
parent | 55715b8b3fc8705e6eecbf835c8d441d3503fa7d (diff) |
fix mongodb driver spamming in the console
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 0b12a78..e1e5c68 100644 --- a/build.gradle +++ b/build.gradle @@ -14,11 +14,15 @@ dependencies { implementation 'junit:junit:4.12' implementation 'org.mongodb:mongo-java-driver:3.12.7' + implementation 'org.apache.logging.log4j:log4j-api:2.14.0' + implementation 'org.apache.logging.log4j:log4j-core:2.14.0' implementation 'ch.qos.logback:logback-classic:1.2.3' + include 'org.mongodb:mongo-java-driver:3.12.7' + include 'org.apache.logging.log4j:log4j-api:2.14.0' + include 'org.apache.logging.log4j:log4j-core:2.14.0' include 'ch.qos.logback:logback-classic:1.2.3' - // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" |