Skip to content

Commit

Permalink
Set duplicate strategy to fix failing build #495
Browse files Browse the repository at this point in the history
  • Loading branch information
de-jcup committed Mar 1, 2022
1 parent 4063417 commit b17eaec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sechub-developertools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ task buildDeveloperAdminUI(type: Jar, dependsOn: build) {


from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}

duplicatesStrategy = DuplicatesStrategy.INCLUDE
with jar
}

0 comments on commit b17eaec

Please sign in to comment.