1
0
Fork 0
minecraft-tweaks-2a03/build.gradle

25 lines
646 B
Groovy
Raw Normal View History

2020-01-07 15:53:42 +00:00
plugins {
2022-01-30 01:18:37 +00:00
id 'fabric-loom' version '0.11-SNAPSHOT'
2020-01-07 15:53:42 +00:00
}
repositories {
mavenCentral()
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
2022-01-30 01:18:37 +00:00
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "org.json:json:20211205"
modImplementation "org.xerial:sqlite-jdbc:3.36.0.3"
modImplementation "com.google.code.findbugs:jsr305:3.0.2"
2022-01-30 01:18:37 +00:00
include "org.json:json:20211205"
include "org.xerial:sqlite-jdbc:3.36.0.3"
2020-01-07 15:53:42 +00:00
}
jar {
from "LICENSE.txt"
}