Skip to content

Commit

Permalink
fix duplicate resource files in src/main/java
Browse files Browse the repository at this point in the history
  • Loading branch information
Machine-Maker committed Apr 8, 2024
1 parent 2eb809f commit ad6e35a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ abstract class SetupSources : DefaultTask() {

files.sync {
from(files.zipTree(decompJar))
include("**/*.java")
into(sourceDir)
includeEmptyDirs = false
}
Expand All @@ -88,6 +89,7 @@ abstract class SetupSources : DefaultTask() {

files.sync {
from(files.zipTree(patchedJar))
include("**/*.java")
into(sourceDir)
includeEmptyDirs = false
}
Expand All @@ -102,6 +104,7 @@ abstract class SetupSources : DefaultTask() {

files.copy {
from(files.zipTree(failedPatchJar))
include("**/*.java")
into(sourceDir)
includeEmptyDirs = false
}
Expand Down

0 comments on commit ad6e35a

Please sign in to comment.