forked from sorceress/EasyAuth
Minor changes
This commit is contained in:
parent
95a110be4d
commit
ece685bfe4
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
id "architectury-plugin" version "2.0.56"
|
||||
id "forgified-fabric-loom" version "0.6.45" apply false
|
||||
id "architectury-plugin" version "2.0.59"
|
||||
id "forgified-fabric-loom" version "0.6.52" apply false
|
||||
}
|
||||
|
||||
architectury {
|
||||
|
|
|
@ -28,10 +28,10 @@ dependencies {
|
|||
|
||||
// Storage
|
||||
// LevelDB database
|
||||
implementation group: 'org.iq80.leveldb', name: 'leveldb', version: '0.12'
|
||||
implementation group: 'org.iq80.leveldb', name: 'leveldb-api', version: '0.12'
|
||||
include group: 'org.iq80.leveldb', name: 'leveldb', version: '0.12'
|
||||
include group: 'org.iq80.leveldb', name: 'leveldb-api', version: '0.12'
|
||||
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'
|
||||
|
||||
// MongoDB driver
|
||||
implementation 'org.mongodb:mongodb-driver-sync:4.1.0'
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
package org.samo_lego.simpleauth;
|
||||
|
||||
import net.fabricmc.loader.api.FabricLoader;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import org.samo_lego.simpleauth.storage.AuthConfig;
|
||||
import org.samo_lego.simpleauth.storage.DBHelper;
|
||||
import org.samo_lego.simpleauth.storage.PlayerCache;
|
||||
|
|
|
@ -14,6 +14,7 @@ loom {
|
|||
// Enable this for yarn to work
|
||||
//useFabricMixin = true
|
||||
mixinConfigs = ["mixins.simpleauth.json"]
|
||||
useFabricMixin = true
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
Loading…
Reference in New Issue