-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spotbugs or findsecbugs create directory in target which it shouldnt #34
Comments
spotbugs maven plugin creates this due to underlying groovy usage. I'm unsure how to fix it but see the issue is duplicating files all over. |
Use file api for reading parsing artifact names, Fix #34
This original issue was handling that was missing with windows that was present for linux style line endings. The original fix put in actually broke things so this is sort of an issue still. I think copying the jars to target is unnecessary as they won't change during the run However, for time being to get folks running again the original issue here of deeply nested is gone. The jar files in question will still be added to target. Opening new issue and will flag it back to this. |
I am currently using spotbugs and i use it using maven, so i put these lines in my pom in reporting plugins
but there is a problem.
when i execute site:site it create some directory inside my target folder.
the directory is
C_\Users\ [myUserName] \ .m2\repository\com\h3xstream\findsecbugs\findsecbugs-plugin\1.7.1
and findsecbugs-plugin-1.7.1.jar is inside this directory.
like it should be
C:\Users\ [myUserName] \ .m2\repository\com\h3xstream\findsecbugs\findsecbugs-plugin\1.7.1
but somebody accidentally use '_' instead of ':' .
The text was updated successfully, but these errors were encountered: