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

@ -18,19 +18,12 @@ 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 {
@ -50,9 +43,6 @@ tasks.withType(JavaCompile).configureEach {
} }
java { java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar() withSourcesJar()
} }
@ -62,11 +52,10 @@ jar {
} }
} }
// 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
} }
@ -76,8 +65,6 @@ publishing {
} }
} }
// Select the repositories you want to publish to
// To publish to maven local, no extra repositories are necessary. Just use the task `publishToMavenLocal`.
repositories { repositories {
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
} }