plugins { id 'fabric-loom' version '0.9-SNAPSHOT' id 'maven-publish' } sourceCompatibility = JavaVersion.VERSION_16 targetCompatibility = JavaVersion.VERSION_16 archivesBaseName = project.name + '-' + project.mcVersion sourceSets.main.java.srcDirs += 'java' sourceSets.main.resources.srcDirs += 'resources' repositories { maven { name = "CurseMaven" url = "https://www.cursemaven.com" } } sourceSets { main { resources { srcDir 'src/generated/resources' } } } dependencies { minecraft "com.mojang:minecraft:${project.mcVersion}" mappings loom.officialMojangMappings() modImplementation "net.fabricmc:fabric-loader:${project.loaderVersion}" modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabricVersion}" } loom { accessWidenerPath = file("src/main/resources/${project.name.toLowerCase()}.accesswidener") } tasks.withType(JavaCompile).configureEach { it.options.encoding = "UTF-8" it.options.release = 16 } java { withSourcesJar() } jar { from("LICENSE") { rename { "${it}_${project.archivesBaseName}"} } manifest { attributes(["Specification-Title": project.name, "Specification-Vendor": project.author, "Specification-Version": "24.0", "Implementation-Title": project.name, "Implementation-Version": project.version, "Implementation-Vendor" : project.author, "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],) } }