Skip to content

Commit

Permalink
build: remove an unused plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
70CentsApple committed Jun 5, 2024
1 parent 47f1902 commit 7835066
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'maven-publish'
apply plugin: 'fabric-loom'
apply plugin: 'io.github.juuxel.loom-quiltflower'
apply plugin: 'com.replaymod.preprocess'
apply plugin: 'me.fallenbreath.yamlang'

Expand Down Expand Up @@ -47,7 +46,10 @@ remapJar {
remapperIsolation = true
}

if (mcVersion >= 11800) {
if (mcVersion >= 1_20_05) {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
} else if (mcVersion >= 11800) {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
} else if (mcVersion >= 11700) {
Expand Down Expand Up @@ -100,7 +102,7 @@ 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.
// With this line commented, sources jar will not be built.
// withSourcesJar()
}

Expand Down

0 comments on commit 7835066

Please sign in to comment.