mirror of
https://github.com/BlockWorldGroup/Ledger-Databases.git
synced 2025-08-18 04:10:15 +08:00
Fix runtime issues
This commit is contained in:
parent
7bbc2ab8ab
commit
c583e32bab
@ -27,21 +27,18 @@ dependencies {
|
|||||||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||||
|
|
||||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
|
||||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
|
||||||
|
|
||||||
// Yes this has to be capitalised
|
// Yes this has to be capitalised
|
||||||
modImplementation "com.github.quiltservertools:Ledger:1.3.0+local"
|
modImplementation "com.github.quiltservertools:Ledger:1.3.0+local"
|
||||||
|
|
||||||
modImplementation "net.fabricmc:fabric-language-kotlin:1.9.4+kotlin.1.8.21"
|
modImplementation "net.fabricmc:fabric-language-kotlin:1.9.4+kotlin.1.8.21"
|
||||||
|
|
||||||
implementation("com.zaxxer:HikariCP:5.0.1")
|
implementation(include("com.zaxxer:HikariCP:5.0.1"))
|
||||||
|
|
||||||
// H2
|
// H2
|
||||||
implementation(include("com.h2database:h2:2.2.224"))
|
implementation(include("com.h2database:h2:2.2.224"))
|
||||||
|
|
||||||
// MySQL
|
// MySQL
|
||||||
implementation(include('mysql:mysql-connector-java:8.3.0'))
|
implementation(include('com.mysql:mysql-connector-j:8.3.0'))
|
||||||
|
|
||||||
// PostgreSQL
|
// PostgreSQL
|
||||||
implementation(include("org.postgresql:postgresql:42.7.3"))
|
implementation(include("org.postgresql:postgresql:42.7.3"))
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Done to increase the memory available to gradle.
|
# Done to increase the memory available to gradle.
|
||||||
org.gradle.jvmargs=-Xmx1G
|
org.gradle.jvmargs=-Xmx2G
|
||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/versions.html
|
# check these on https://fabricmc.net/versions.html
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"server": [
|
"server": [
|
||||||
{
|
{
|
||||||
"value": "net.quiltservertools.ledger.databases.LedgerDatabases"
|
"value": "net.quiltservertools.ledger.databases.LedgerDatabases::INSTANCE"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user