Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hadoop-hdds/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
4 changes: 2 additions & 2 deletions hadoop-hdds/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,11 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
<execution>
<id>rename-generated-test-config</id>
<id>copy-generated-test-config</id>
<phase>process-test-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-hdds/container-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
4 changes: 2 additions & 2 deletions hadoop-hdds/framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,11 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
<execution>
<id>rename-generated-test-config</id>
<id>copy-generated-test-config</id>
<phase>process-test-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-hdds/server-scm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-ozone/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-ozone/csi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-ozone/ozone-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-ozone/recon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
<artifactId>copy-rename-maven-plugin</artifactId>
<executions>
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<phase>process-classes</phase>
</execution>
</executions>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2179,14 +2179,14 @@
If a new module is introduced with generated config:
- override ban-annotations execution of maven-enforcer-plugin
- configure maven-compiler-plugin with the ConfigFileGenerator annotationProcessor
- bind one or both of these rename executions
- bind one or both of these copy executions
- add the module's name in OzoneConfiguration#activate
See hadoop-hdds/common/pom.xml for example.
-->
<execution>
<id>rename-generated-config</id>
<id>copy-generated-config</id>
<goals>
<goal>rename</goal>
<goal>copy</goal>
</goals>
<!-- bind to process-classes in modules where needed -->
<phase>none</phase>
Expand All @@ -2200,9 +2200,9 @@
</configuration>
</execution>
<execution>
<id>rename-generated-test-config</id>
<id>copy-generated-test-config</id>
<goals>
<goal>rename</goal>
<goal>copy</goal>
</goals>
<!-- bind to process-test-classes in modules where needed -->
<phase>none</phase>
Expand Down