Skip to content

Commit c583e32

Browse files
Fix runtime issues
1 parent 7bbc2ab commit c583e32

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

build.gradle

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,18 @@ dependencies {
2727
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
2828
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2929

30-
// Fabric API. This is technically optional, but you probably want it anyway.
31-
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
32-
3330
// Yes this has to be capitalised
3431
modImplementation "com.github.quiltservertools:Ledger:1.3.0+local"
3532

3633
modImplementation "net.fabricmc:fabric-language-kotlin:1.9.4+kotlin.1.8.21"
3734

38-
implementation("com.zaxxer:HikariCP:5.0.1")
35+
implementation(include("com.zaxxer:HikariCP:5.0.1"))
3936

4037
// H2
4138
implementation(include("com.h2database:h2:2.2.224"))
4239

4340
// MySQL
44-
implementation(include('mysql:mysql-connector-java:8.3.0'))
41+
implementation(include('com.mysql:mysql-connector-j:8.3.0'))
4542

4643
// PostgreSQL
4744
implementation(include("org.postgresql:postgresql:42.7.3"))

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Done to increase the memory available to gradle.
2-
org.gradle.jvmargs=-Xmx1G
2+
org.gradle.jvmargs=-Xmx2G
33

44
# Fabric Properties
55
# check these on https://fabricmc.net/versions.html

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"entrypoints": {
2020
"server": [
2121
{
22-
"value": "net.quiltservertools.ledger.databases.LedgerDatabases"
22+
"value": "net.quiltservertools.ledger.databases.LedgerDatabases::INSTANCE"
2323
}
2424
]
2525
},

0 commit comments

Comments
 (0)