在您的 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 SNAPSHOTS
https://repository.apache.org/content/repositories/snapshots/