-
Notifications
You must be signed in to change notification settings - Fork 174
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
[MNGSITE-540] Use correct plugin for reporting #216
Conversation
maven-scm-plugin/pom.xml
Outdated
@@ -228,7 +228,7 @@ | |||
<plugins> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-plugin-plugin</artifactId> | |||
<artifactId>maven-plugin-report-plugin</artifactId> |
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.
I am not sure why there is no profile reporting
in this project. IMHO this belongs there. WDYT @michael-o
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.
For me is ok ... even more I would be happy to remove reporting profile at all everywhere.
We always should execute all reporting plugins not only in special profile
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.
@kwin I move this to a profile for consistency reasons with others.
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.
For me is ok ... even more I would be happy to remove reporting profile at all everywhere.
We always should execute all reporting plugins not only in special profile
This is a separate discussion. The reason is likely computational overhead.
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.
I moved to a profile in bacee6d
20e8ea8
to
db923dd
Compare
Will check later today |
maven-scm-plugin/pom.xml
Outdated
@@ -228,7 +228,7 @@ | |||
<plugins> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-plugin-plugin</artifactId> | |||
<artifactId>maven-plugin-report-plugin</artifactId> |
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.
@kwin I move this to a profile for consistency reasons with others.
maven-scm-plugin/pom.xml
Outdated
@@ -228,7 +228,7 @@ | |||
<plugins> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-plugin-plugin</artifactId> | |||
<artifactId>maven-plugin-report-plugin</artifactId> |
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.
For me is ok ... even more I would be happy to remove reporting profile at all everywhere.
We always should execute all reporting plugins not only in special profile
This is a separate discussion. The reason is likely computational overhead.
With https://issues.apache.org/jira/browse/MPLUGIN-423 the reporting mojo has been extracted in a dedicated plugin Encapsulate in "reporting" profile
db923dd
to
bacee6d
Compare
With https://issues.apache.org/jira/browse/MPLUGIN-423 the reporting mojo has been extracted in a dedicated plugin