Skip to content

Commit

Permalink
Fix horrible indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ChachyDev committed Nov 30, 2021
1 parent 1dd8d91 commit f6ef672
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
plugins {
id "fabric-loom" version "0.10-SNAPSHOT"
id "fabric-loom" version "0.10-SNAPSHOT"
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}

withSourcesJar()
withSourcesJar()
}

version = "0.2.3"
group = "club.chachy"

dependencies {
minecraft "com.mojang:minecraft:1.18"
mappings "net.fabricmc:yarn:1.18+build.1:v2"
modImplementation "net.fabricmc:fabric-loader:0.12.6"
minecraft "com.mojang:minecraft:1.18"
mappings "net.fabricmc:yarn:1.18+build.1:v2"
modImplementation "net.fabricmc:fabric-loader:0.12.6"
}

processResources {
inputs.property "version", project.version
inputs.property "version", project.version

filesMatching("fabric.mod.json") {
expand "version": project.version
}
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}

tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
it.options.encoding = "UTF-8"
it.options.release = 17
}

jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}" }
}
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}" }
}
}

0 comments on commit f6ef672

Please sign in to comment.