You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/04/26 06:50:43 UTC

[camel] 09/10: CAMEL-17894: disable checkstyle and import by default to speed-up the build in selected DSL components

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 df0d388f598f14b449e0a99117961d93ede2bbb0
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Apr 25 11:27:58 2022 +0200

    CAMEL-17894: disable checkstyle and import by default to speed-up the build in selected DSL components
---
 dsl/camel-componentdsl/pom.xml | 4 ++++
 dsl/camel-endpointdsl/pom.xml  | 4 ++++
 dsl/pom.xml                    | 4 ----
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dsl/camel-componentdsl/pom.xml b/dsl/camel-componentdsl/pom.xml
index c5d7c5cfd0c..1e36952813a 100644
--- a/dsl/camel-componentdsl/pom.xml
+++ b/dsl/camel-componentdsl/pom.xml
@@ -160,6 +160,10 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>net.revelc.code.formatter</groupId>
+                <artifactId>formatter-maven-plugin</artifactId>
+            </plugin>
         </plugins>
     </build>
 
diff --git a/dsl/camel-endpointdsl/pom.xml b/dsl/camel-endpointdsl/pom.xml
index 94eada3e371..222ac3e1f54 100644
--- a/dsl/camel-endpointdsl/pom.xml
+++ b/dsl/camel-endpointdsl/pom.xml
@@ -167,6 +167,10 @@
                     <maxmem>1024M</maxmem>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>net.revelc.code.formatter</groupId>
+                <artifactId>formatter-maven-plugin</artifactId>
+            </plugin>
         </plugins>
     </build>
 
diff --git a/dsl/pom.xml b/dsl/pom.xml
index ba8659b13ce..b04145a23d3 100644
--- a/dsl/pom.xml
+++ b/dsl/pom.xml
@@ -178,10 +178,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>net.revelc.code.formatter</groupId>
-                <artifactId>formatter-maven-plugin</artifactId>
-            </plugin>
         </plugins>
     </build>
 </project>