You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ce...@apache.org on 2013/01/24 22:16:38 UTC

svn commit: r1438197 - /activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java

Author: ceposta
Date: Thu Jan 24 21:16:38 2013
New Revision: 1438197

URL: http://svn.apache.org/viewvc?rev=1438197&view=rev
Log:
Fix for https://issues.apache.org/jira/browse/AMQ-4275 maven plugin goal "activemq:run" cannot run in latest 5.8 snapshot

Modified:
    activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java

Modified: activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java?rev=1438197&r1=1438196&r2=1438197&view=diff
==============================================================================
--- activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java (original)
+++ activemq/trunk/activemq-tooling/activemq-maven-plugin/src/main/java/org/apache/activemq/maven/BrokerMojo.java Thu Jan 24 21:16:38 2013
@@ -51,7 +51,7 @@ public class BrokerMojo extends Abstract
     /**
      * The maven project.
      *
-     * @parameter property="${project}"
+     * @parameter property="project"
      * @required
      * @readonly
      */
@@ -62,7 +62,7 @@ public class BrokerMojo extends Abstract
      * is described <a
      * href="http://activemq.apache.org/how-do-i-embed-a-broker-inside-a-connection.html">here</a>
      *
-     * @parameter property="${configUri}"
+     * @parameter property="configUri"
      *            default-value="broker:(tcp://localhost:61616)?useJmx=false&persistent=false"
      * @required
      */
@@ -71,21 +71,21 @@ public class BrokerMojo extends Abstract
     /**
      * Indicates whether to fork the broker, useful for integration tests.
      *
-     * @parameter property="${fork}" default-value="false"
+     * @parameter property="fork" default-value="false"
      */
     private boolean fork;
 
     /**
      * System properties to add
      *
-     * @parameter property="${systemProperties}"
+     * @parameter property="systemProperties"
      */
     private Properties systemProperties;
 
     /**
      * Skip execution of the ActiveMQ Broker plugin if set to true
      *
-     * @parameter property="${skip}"
+     * @parameter property="skip"
      */
     private boolean skip;