Updated Branches: refs/heads/camel-2.11.x 4ebb646f3 -> 961fa420f
Clean up the camel mvn:run plugin's configuration properties Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/bc65781e Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/bc65781e Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/bc65781e Branch: refs/heads/camel-2.11.x Commit: bc65781e5a90da29cd90b48869e60974a97b3f92 Parents: 4ebb646 Author: Willem Jiang <ningji...@apache.org> Authored: Mon Jun 3 16:08:55 2013 +0800 Committer: Willem Jiang <ningji...@apache.org> Committed: Mon Jun 3 16:38:04 2013 +0800 ---------------------------------------------------------------------- .../main/java/org/apache/camel/maven/RunMojo.java | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/bc65781e/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/RunMojo.java ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/RunMojo.java b/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/RunMojo.java index 476abaa..7e356e7 100644 --- a/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/RunMojo.java +++ b/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/RunMojo.java @@ -103,21 +103,23 @@ public class RunMojo extends AbstractExecMojo { /** * Allows the DOT file generation to be enabled * - * @parameter property="false" + * @parameter property="camel.usdDot" + * default-value="false" */ protected boolean useDot; /** * Whether to log the classpath when starting * - * @parameter property="false" + * @parameter property="camel.logClasspath" + * default-value="false" */ protected boolean logClasspath; /** * Whether to use Blueprint when running, instead of Spring * - * @parameter property="camel.blueprint" + * @parameter property="camel.useBlueprint" * default-value="false" */ protected boolean useBlueprint; @@ -125,7 +127,7 @@ public class RunMojo extends AbstractExecMojo { /** * Whether to use CDI when running, instead of Spring * - * @parameter property="camel.cdi" + * @parameter property="camel.useCDI" * default-value="false" */ protected boolean useCDI;