-
Notifications
You must be signed in to change notification settings - Fork 24
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
[MINVOKER-250] streamLogsOnFailures #20
Conversation
@@ -103,6 +103,13 @@ under the License. | |||
<type>int</type> | |||
<description>BuildJobs will be sorted in the descending order of the ordinal. In other words, the BuildJobs with the highest numbers will be executed first</description> | |||
</field> | |||
<field xml.attribute="true"> |
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.
Is xml.attribute something modello has already defined? They shouldn't have. Names beginning xml are reserved in the XML 1.0 spec.
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.
Another fields in this file is defined in the same way.
As I see xml.attribute="true"
has effect that field is added as xml attribute instead of new element/tag in xml.
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.
src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java
Outdated
Show resolved
Hide resolved
PR was rebased with current master branch. |
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 might try to shorten the name of the option. E.g. instead of streamLogsOnFailures perhaps simply logFailures
I wanted to name this option similar to one existing I'm waiting for decision. |
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.
It occurred to me last night that since this is a user facing property, there are likely some docs that need to be updated in this PR as well. A property doesn't help if no one can find it.
Which document do you think should be updated? I added javadocs comments on new option, so it will be available on standard mojo help, on site and by command line. |
Wherever we document config options on
https://maven.apache.org/plugins/maven-invoker-plugin/
…On Tue, May 19, 2020 at 11:23 AM Slawomir Jaranowski < ***@***.***> wrote:
Which document do you think should be updated?
I added javadocs comments on new option, so it will be available on
standard mojo help, on site and by command line.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#20 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHVP2DFCEC6WBB7GOPBUW3RSKP5HANCNFSM4LVRGQSA>
.
--
Elliotte Rusty Harold
elharo@macfaq.com
|
@slawekjaranowski Thanks for this PR this new feature will be very helpful!! Maybe you can can add a page in |
Documentation added in exemples. |
No description provided.