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
Requires Fabric API > 0.34
- Press `B` for menu.
- Select `save` to save the coordinate.
- Select `list` to view saved coordinates

View File

@ -18,19 +18,12 @@ repositories {
}
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
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}"
// 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.
modImplementation "io.github.cottonmc:LibGui:${project.libgui_version}"
}
processResources {
@ -50,9 +43,6 @@ tasks.withType(JavaCompile).configureEach {
}
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()
}
@ -62,11 +52,10 @@ jar {
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(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 {
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
}