plugins { id 'fabric-loom' version '0.6-SNAPSHOT' id 'maven-publish' } sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 archivesBaseName = project.archives_base_name version = project.mod_version group = project.maven_group repositories { maven { name = "CottonMC" url = "https://server.bbkr.space/artifactory/libs-release" } maven { name = "TerraformersMC" url = "https://maven.terraformersmc.com/releases" } } dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}" modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modImplementation include("io.github.cottonmc:LibGui:${project.libgui_version}") } processResources { inputs.property "version", project.version filesMatching("fabric.mod.json") { expand "version": project.version } } test { useJUnit() maxHeapSize = '1G' } tasks.withType(JavaCompile).configureEach { // ensure that the encoding is set to UTF-8, no matter what the system default is // this fixes some edge cases with special characters not displaying correctly // see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html // If Javadoc is generated, this must be specified in that task too. it.options.encoding = "UTF-8" } java { withSourcesJar() } jar { from("LICENSE") { rename { "${it}_${project.archivesBaseName}"} } } publishing { publications { mavenJava(MavenPublication) { artifact(remapJar) { builtBy remapJar } artifact(sourcesJar) { builtBy remapSourcesJar } } } repositories { // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. } }