Fix build

This commit is contained in:
Surya 2021-05-22 15:41:27 +05:30 committed by Surya Prakash
parent c667dbb187
commit d0495e8638
2 changed files with 36 additions and 47 deletions

View File

@ -2,6 +2,8 @@
## Usage ## Usage
Requires Fabric API > 0.34
- Press `B` for menu. - Press `B` for menu.
- Select `save` to save the coordinate. - Select `save` to save the coordinate.
- Select `list` to view saved coordinates - Select `list` to view saved coordinates

View File

@ -1,6 +1,6 @@
plugins { plugins {
id 'fabric-loom' version '0.6-SNAPSHOT' id 'fabric-loom' version '0.6-SNAPSHOT'
id 'maven-publish' id 'maven-publish'
} }
sourceCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = JavaVersion.VERSION_1_8
@ -18,67 +18,54 @@ repositories {
} }
dependencies { dependencies {
// To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}"
minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modImplementation "io.github.cottonmc:LibGui:${project.libgui_version}"
// Cotton MC libgui
modImplementation include("io.github.cottonmc:LibGui:${project.libgui_version}")
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
} }
processResources { processResources {
inputs.property "version", project.version inputs.property "version", project.version
filesMatching("fabric.mod.json") { filesMatching("fabric.mod.json") {
expand "version": project.version expand "version": project.version
} }
} }
tasks.withType(JavaCompile).configureEach { tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is // 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 // 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 // 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. // If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8" it.options.encoding = "UTF-8"
} }
java { java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task withSourcesJar()
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
} }
jar { jar {
from("LICENSE") { from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"} rename { "${it}_${project.archivesBaseName}"}
} }
} }
// configure the maven publication
publishing { publishing {
publications { publications {
mavenJava(MavenPublication) { mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven artifact(remapJar) {
artifact(remapJar) { builtBy remapJar
builtBy remapJar }
} artifact(sourcesJar) {
artifact(sourcesJar) { builtBy remapSourcesJar
builtBy remapSourcesJar }
} }
} }
}
// Select the repositories you want to publish to repositories {
// To publish to maven local, no extra repositories are necessary. Just use the task `publishToMavenLocal`. // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories { }
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
}
} }