我想从翻译和扫描中排除目标文件夹下的所有文件。我曾尝试使用-exclude参数,但它似乎无法正常工作。
[warning]: No files were excluded as the file patterns: [**/target/**/*] specified for -exclude option did not match any files.
HP Fortify Static Code Analyzer 6.42.0006 (using JVM 1.8.0_45)
Processing C:/path/ProjectName/target/test/test_fortify_exclusion2.jsp
Processing C:/path/ProjectName/target/test_fortify_exclusion.jsp
我还尝试了**target**
和**/target/**
。
答案 0 :(得分:2)
原来我需要指定根路径,最好是项目的路径。所以在这个例子中,它应该是:-exclude "C:/path/ProjectName/**/target/**/*"