2021-01-14 19:14:57 +00:00
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url = "https://jitpack.io"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-01-20 11:33:36 +00:00
|
|
|
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
|
2021-01-14 19:14:57 +00:00
|
|
|
mappings("net.fabricmc:yarn:${rootProject.yarn_mappings}:v2")
|
|
|
|
// We depend on fabric loader here to use the fabric @Environment annotations
|
|
|
|
// Do NOT use other classes from fabric loader
|
|
|
|
modCompile "net.fabricmc:fabric-loader:${rootProject.loader_version}"
|
|
|
|
|
|
|
|
modCompile("me.shedaniel:architectury:${rootProject.architectury_version}") {
|
|
|
|
exclude(module: "fabric-api")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Password hashing
|
|
|
|
// Argon2
|
|
|
|
implementation "de.mkammerer:argon2-jvm:${argon2_version}"
|
|
|
|
include "de.mkammerer:argon2-jvm:${argon2_version}"
|
|
|
|
|
|
|
|
// BCrypt
|
|
|
|
implementation "at.favre.lib:bcrypt:${bcrypt_version}"
|
|
|
|
implementation "at.favre.lib:bytes:${bytes_version}"
|
|
|
|
include "at.favre.lib:bcrypt:${bcrypt_version}"
|
|
|
|
include "at.favre.lib:bytes:${bytes_version}"
|
|
|
|
|
|
|
|
// Storage
|
|
|
|
// LevelDB database
|
2021-01-26 08:28:25 +00:00
|
|
|
implementation 'org.iq80.leveldb:leveldb:0.12'
|
|
|
|
implementation 'org.iq80.leveldb:leveldb-api:0.12'
|
|
|
|
include 'org.iq80.leveldb:leveldb:0.12'
|
|
|
|
include 'org.iq80.leveldb:leveldb-api:0.12'
|
2021-01-14 19:14:57 +00:00
|
|
|
|
|
|
|
// MongoDB driver
|
|
|
|
implementation 'org.mongodb:mongodb-driver-sync:4.1.0'
|
|
|
|
include 'org.mongodb:mongodb-driver-sync:4.1.0'
|
|
|
|
|
|
|
|
// JNA lib
|
|
|
|
include 'net.java.dev.jna:jna:5.5.0'
|
|
|
|
}
|
|
|
|
|
2021-01-20 11:33:36 +00:00
|
|
|
architectury {
|
2021-01-14 19:14:57 +00:00
|
|
|
common()
|
|
|
|
}
|