plugins { id 'fabric-loom' version '0.4-SNAPSHOT' } repositories { mavenCentral() } dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modCompile "net.fabricmc:fabric-loader:${project.loader_version}" modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modCompile "org.json:json:20200518" modCompile "org.xerial:sqlite-jdbc:3.32.3.2" modImplementation "com.google.code.findbugs:jsr305:3.0.2" include "org.json:json:20200518" include "org.xerial:sqlite-jdbc:3.32.3.2" } jar { from "LICENSE.txt" }