Skip to content

Commit

Permalink
simplification again ?
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Mar 9, 2025
1 parent 196d206 commit f5e5b27
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,12 @@ repositories {

sourceSets {
main {
resources.setSrcDirs(listOf("src/main/resources"))
}
}


tasks.processResources {
from("src/main/java") {
include("**/graphviz.dat")
include("**/*.svg")
include("**/*.png")
include("**/*.txt")
into("")
resources {
srcDir("src/main/resources") // Useless, this is the default
srcDir("src/main/java") {
include("**/graphviz.dat", "**/*.svg", "**/*.png", "**/*.txt")
}
}
}
}

Expand Down

0 comments on commit f5e5b27

Please # to comment.