This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit 84963de7ef50357712e1d76b9105d549f947fac9 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Oct 19 10:21:56 2021 +0200 Kafka Service Registry Example: Added plugin configuration --- .../kafka-registry-consumer/pom.xml | 21 +++++++++++++++++++++ .../kafka-registry-producer/pom.xml | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/kafka-service-registry/kafka-registry-consumer/pom.xml b/kafka-service-registry/kafka-registry-consumer/pom.xml index 8865537..a4ad8c2 100644 --- a/kafka-service-registry/kafka-registry-consumer/pom.xml +++ b/kafka-service-registry/kafka-registry-consumer/pom.xml @@ -152,6 +152,27 @@ <plugins> <plugin> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <version>${formatter-maven-plugin.version}</version> + <configuration> + <configFile>${maven.multiModuleProjectDirectory}/eclipse-formatter-config.xml</configFile> + </configuration> + </plugin> + + <plugin> + <groupId>net.revelc.code</groupId> + <artifactId>impsort-maven-plugin</artifactId> + <version>${impsort-maven-plugin.version}</version> + <configuration> + <groups>java.,javax.,org.w3c.,org.xml.,junit.</groups> + <removeUnused>true</removeUnused> + <staticAfter>true</staticAfter> + <staticGroups>java.,javax.,org.w3c.,org.xml.,junit.</staticGroups> + </configuration> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> diff --git a/kafka-service-registry/kafka-registry-producer/pom.xml b/kafka-service-registry/kafka-registry-producer/pom.xml index f21780f..f27a968 100644 --- a/kafka-service-registry/kafka-registry-producer/pom.xml +++ b/kafka-service-registry/kafka-registry-producer/pom.xml @@ -156,6 +156,27 @@ <plugins> <plugin> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <version>${formatter-maven-plugin.version}</version> + <configuration> + <configFile>${maven.multiModuleProjectDirectory}/eclipse-formatter-config.xml</configFile> + </configuration> + </plugin> + + <plugin> + <groupId>net.revelc.code</groupId> + <artifactId>impsort-maven-plugin</artifactId> + <version>${impsort-maven-plugin.version}</version> + <configuration> + <groups>java.,javax.,org.w3c.,org.xml.,junit.</groups> + <removeUnused>true</removeUnused> + <staticAfter>true</staticAfter> + <staticGroups>java.,javax.,org.w3c.,org.xml.,junit.</staticGroups> + </configuration> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version>
