Fix runtime issues

This commit is contained in:
Potatoboy9999 2024-04-09 20:24:02 -07:00
parent 7bbc2ab8ab
commit c583e32bab
No known key found for this signature in database
GPG Key ID: 59B6B6930BF7F2AB
3 changed files with 4 additions and 7 deletions

View File

@ -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"))

View File

@ -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

View File

@ -19,7 +19,7 @@
"entrypoints": { "entrypoints": {
"server": [ "server": [
{ {
"value": "net.quiltservertools.ledger.databases.LedgerDatabases" "value": "net.quiltservertools.ledger.databases.LedgerDatabases::INSTANCE"
} }
] ]
}, },