-
Notifications
You must be signed in to change notification settings - Fork 21
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
#80 Allows to set directories to include and exclude #95
Conversation
41bde7a
to
3624296
Compare
@@ -131,6 +131,15 @@ public void scan() { | |||
} | |||
} | |||
|
|||
private Properties buildProperties() { | |||
Properties properties = new Properties(); | |||
if (!StringUtils.isAllBlank(extension.getDirIncludes(), extension.getDirExcludes())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question. This expects a user must enter both the dirIncludes
and dirExcludes
. They can't just enter one. Is that the intended behaviour?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question. This expects a user must enter both the
dirIncludes
anddirExcludes
. They can't just enter one. Is that the intended behaviour?
Good catch!
1885f59
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 with couple of minor comments.
Allows to set directories to include and exclude in Nexus IQ.
Evaluation reports will have less noise when setting
dirExcludes = '**/classes.jar,**/annotations.zip,**/lint.jar,**/internal_impl-*.jar'
by excluding those files that are marked as unknown:It relates to the following issue #s:
cc @bhamail / @DarthHater / @guillermo-varela / @shaikhu