Updated Branches: refs/heads/master f55cf593d -> 08d00707c
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/7a3dc780 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7a3dc780 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7a3dc780 Branch: refs/heads/master Commit: 7a3dc780fcc3cdff179cf8baf38cc676749a826a Parents: f55cf59 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:36:19 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/7a3dc780/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 ba60d54..e14fe03 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;