diff options
author | Keuin <[email protected]> | 2021-09-07 10:25:33 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2021-09-07 10:25:33 +0800 |
commit | 310df3b3244eb64af8270d10bcca8e67872a8ccf (patch) | |
tree | 61cdd4a1a3c8cecccb86b7566e6bf102f53743cd | |
parent | d96d4ecac8e905108295c9ed98f945b9119fa2dc (diff) |
Fix missing dependency in generated jar file.v1.5.1
-rw-r--r-- | build.gradle | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index ee15def..620adff 100644 --- a/build.gradle +++ b/build.gradle @@ -32,8 +32,12 @@ 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.13.2' + implementation 'org.mongodb:mongodb-driver-core:4.3.1' implementation 'org.mongodb:mongodb-driver-sync:4.3.1' implementation 'org.mongodb:bson:4.3.1' + include 'org.mongodb:mongodb-driver-core:4.3.1' + include 'org.mongodb:mongodb-driver-sync:4.3.1' + include 'org.mongodb:bson:4.3.1' } processResources { |