在您的 POM 中使用 Maven SNAPSHOT 儲存庫
開發人員 > 開發人員指南 > 在您的 POM 中使用 Maven SNAPSHOT 儲存庫
ActiveMQ Classic
如果您想試用 SNAPSHOT 版本,您可以在您的 pom.xml 檔案中新增 Maven 2 快照儲存庫。
<repository>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
然後您可以在您的 pom.xml
中使用 ActiveMQ Classic 的 SNAPSHOT 版本。
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<version>5.14.0-SNAPSHOT</version>
</dependency>
Apache ActiveMQ Classic 快照
https://repository.apache.org/content/repositories/snapshots/