summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorKeuin <[email protected]>2021-09-06 20:48:23 +0800
committerKeuin <[email protected]>2021-09-06 20:48:23 +0800
commitd96d4ecac8e905108295c9ed98f945b9119fa2dc (patch)
tree26d808273451fc6b8fb5ac4e0d2b1936fb373843 /build.gradle
parent8e8e43a248e25dd9bea5cc4fc7d84c9cfcf1b2b0 (diff)
Update dependency. Now supports Mongodb 5.x.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 5 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 596eef1..ee15def 100644
--- a/build.gradle
+++ b/build.gradle
@@ -11,6 +11,8 @@ version = project.mod_version
group = project.maven_group
repositories {
+ mavenCentral()
+
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
@@ -29,9 +31,9 @@ dependencies {
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
- implementation 'junit:junit:4.12'
- implementation 'org.mongodb:mongo-java-driver:3.12.7'
- include 'org.mongodb:mongo-java-driver:3.12.7'
+ implementation 'junit:junit:4.13.2'
+ implementation 'org.mongodb:mongodb-driver-sync:4.3.1'
+ implementation 'org.mongodb:bson:4.3.1'
}
processResources {