Skip to content

Commit d1abe65

Browse files
committed
added sqlite to gradle
1 parent a015865 commit d1abe65

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ repositories {
3939
name = "Terraformers"
4040
url = "https://maven.terraformersmc.com/"
4141
}
42+
43+
4244
}
4345

4446
loom {
@@ -50,22 +52,25 @@ loom {
5052
sourceSet sourceSets.client
5153
}
5254
}
53-
5455
}
5556

5657
fabricApi {
5758
configureDataGeneration()
5859
}
5960

6061
dependencies {
61-
// To change the versions see the gradle.properties file
62+
// minecraft related dependencies
6263
minecraft "com.mojang:minecraft:${project.minecraft_version}"
6364
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
6465
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
6566

66-
// Fabric API. This is technically optional, but you probably want it anyway.
67+
// mod related dependencies
6768
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
6869
modImplementation("com.terraformersmc:modmenu:${project.modmenu_version}")
70+
71+
// other dependencies
72+
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
73+
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.46.0.1'
6974
}
7075

7176
processResources {

0 commit comments

Comments
 (0)