diff options
author | Keuin <[email protected]> | 2020-12-26 13:15:37 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2020-12-26 13:15:37 +0800 |
commit | 6b22ae06457ec44ec22ea39582a02dd4168e397b (patch) | |
tree | 53dcc78a7fbba4ebf15ccec21f46ded7e973de91 /build.gradle | |
parent | 61cd5ad0670203e10b1e5b019a6e84aadeed6433 (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" |