-
Notifications
You must be signed in to change notification settings - Fork 592
HDDS-12777. Use module-specific name for generated config files #8475
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
Changes from all commits
304775d
9471bba
9d210c7
41eab9e
1e8145a
d9ab1a9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -334,6 +334,20 @@ | |
|
|
||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>com.coderplus.maven.plugins</groupId> | ||
| <artifactId>copy-rename-maven-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>rename-generated-config</id> | ||
| <phase>process-classes</phase> | ||
| </execution> | ||
| <execution> | ||
| <id>rename-generated-test-config</id> | ||
| <phase>process-test-classes</phase> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For the two modules, famework and common, who has this extra "process-test-classes", will both the two generated xml files be loaded during OzoneConfiguration activation?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The config file for test is created in |
||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>com.github.spotbugs</groupId> | ||
| <artifactId>spotbugs-maven-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.
@adoroszlai have checked the above comment why we added again core-site.xml here? Just wanted to make sure we are not skipping anything!
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.
@umamaheswararao Please see the "Remove the hack introduced by HDDS-3871" point in PR description.
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.
Thanks @adoroszlai for pointing it.