This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f092718f8289050720a91035777c1c1f24d7e16c Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Fri Apr 22 13:28:32 2022 +0200 CAMEL-17894: added a separate profile to retain the previous behavior --- parent/pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/parent/pom.xml b/parent/pom.xml index 5b97b820eaf..9a35f3e577c 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -4694,6 +4694,25 @@ </properties> </profile> + <profile> + <id>format</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>net.revelc.code</groupId> + <artifactId>impsort-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>sourcecheck</id> <build>
