Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions agent/agent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ fun CopySpec.isolateClasses(jars: Iterable<File>) {
rename("^(.*)\\.class\$", "\$1.classdata")
// Rename LICENSE file since it clashes with license dir on non-case sensitive FSs (i.e. Mac)
rename("""^LICENSE$""", "LICENSE.renamed")
// excluding pom.xml files that are embedded in several dependencies
// in order to avoid false positives from security scanners
exclude("META-INF/maven/**")
}
}
from("${rootProject.projectDir}/LICENSE") {
Expand Down
Loading