我可以下载&使用以下命令启动一个有用配置的activeMQ代理:
mvn org.apache.activemq.tooling:maven-activemq-plugin:5.7.0:run
这是惊人的,但也很满口,容易忘记或拼错。我可以将它包装在一个shell脚本中,但我更希望保持文件数低,所以我编写了这个:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pushtechnology.example</groupId>
<artifactId>jms-broker</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>org.apache.activemq.tooling:maven-activemq-plugin:5.7.0:run</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>
...所以现在我只需要记住mvn exec:exec
但是这需要花费一个子进程来支持它自己的JVM和Maven的副本。它有效,但感觉就像锤子打蛋。是否有更惯用的方法来启动ActiveMQ,只需要一个只涉及Maven的精简命令行?