-
Notifications
You must be signed in to change notification settings - Fork 237
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
Disable add profile src execution by default to make the build log clean #4435
Conversation
Signed-off-by: Chong Gao <res_life@163.com>
This is to remove lots of the following prints
|
build |
@@ -663,7 +663,7 @@ | |||
<execution> | |||
<id>add-profile-src-31+</id> | |||
<goals><goal>add-source</goal></goals> | |||
<phase>generate-sources</phase> | |||
<phase>none</phase> <!--Disable it for all submodules, only sql-plugin needs to enable it --> |
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.
How about removing this whole execution if it was not needed ?
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.
You are right. But not sure if submodules will use this in future.
Let's keep it in the parent pom.
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.
LGTM
In a future PR, it would also be great to get rid of duplicate definitions of executions like add-profile-src-30+
identical across profiles
build |
1 similar comment
build |
Signed-off-by: Chong Gao res_life@163.com