I'm trying to fetch the following apache-activemq file through maven-dependency-plugin:
https://repo1.maven.org/maven2/org/apache/activemq/apache-activemq/5.13.2/
But it ends in a -bin.zip. What do I need to add to correctly reference this? My maven-dependency-plugin entry for this artifact is the following:
<artifactItem>
<groupId>org.apache.activemq</groupId>
<artifactId>apache-activemq</artifactId>
<version>${activemq-install.version}-bin</version>
<type>zip</type>
<outputDirectory>${assembly.folder}</outputDirectory>
</artifactItem>