We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42b6730 commit a874c5eCopy full SHA for a874c5e
agent/agent/build.gradle.kts
@@ -207,6 +207,9 @@ fun CopySpec.isolateClasses(jars: Iterable<File>) {
207
rename("^(.*)\\.class\$", "\$1.classdata")
208
// Rename LICENSE file since it clashes with license dir on non-case sensitive FSs (i.e. Mac)
209
rename("""^LICENSE$""", "LICENSE.renamed")
210
+ // excluding pom.xml files that are embedded in several dependencies
211
+ // in order to avoid false positives from security scanners
212
+ exclude("META-INF/maven/**")
213
}
214
215
from("${rootProject.projectDir}/LICENSE") {
0 commit comments