You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/06/18 06:19:17 UTC

[camel] branch master updated: Fixed CS for Camel Main Maven Plugin

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new e07b17c  Fixed CS for Camel Main Maven Plugin
e07b17c is described below

commit e07b17c2ce586acdcf4a13a42f5603c2643f209e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jun 18 08:18:34 2019 +0200

    Fixed CS for Camel Main Maven Plugin
---
 .../src/main/java/org/apache/camel/maven/AutowireMojo.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/catalog/camel-main-maven-plugin/src/main/java/org/apache/camel/maven/AutowireMojo.java b/catalog/camel-main-maven-plugin/src/main/java/org/apache/camel/maven/AutowireMojo.java
index 6a1b647..8f936b4 100644
--- a/catalog/camel-main-maven-plugin/src/main/java/org/apache/camel/maven/AutowireMojo.java
+++ b/catalog/camel-main-maven-plugin/src/main/java/org/apache/camel/maven/AutowireMojo.java
@@ -77,13 +77,6 @@ import org.reflections.util.ConfigurationBuilder;
 public class AutowireMojo extends AbstractExecMojo {
 
     /**
-     * Whether to allow downloading Camel catalog version from the internet. This is needed if the project
-     * uses a different Camel version than this plugin is using by default.
-     */
-    @Parameter(property = "camel.downloadVersion", defaultValue = "true")
-    private boolean downloadVersion;
-
-    /**
      * Whether to log the classpath when starting
      */
     @Parameter(property = "camel.logClasspath", defaultValue = "false")
@@ -122,6 +115,13 @@ public class AutowireMojo extends AbstractExecMojo {
     @Parameter(defaultValue = "${project.build.directory}/classes/camel-main-mappings.properties")
     protected File mappingsFile;
 
+    /**
+     * Whether to allow downloading Camel catalog version from the internet. This is needed if the project
+     * uses a different Camel version than this plugin is using by default.
+     */
+    @Parameter(property = "camel.downloadVersion", defaultValue = "true")
+    private boolean downloadVersion;
+
     @Component
     private ArtifactFactory artifactFactory;