gemmellr commented on a change in pull request #22: Publish ActiveMQ 5.15.11 release URL: https://github.com/apache/activemq-website/pull/22#discussion_r355032542
########## File path: src/activemq-51511-release.md ########## @@ -0,0 +1,88 @@ +--- +layout: default_md +title: ActiveMQ 5.15.11 Release +title-class: page-title-activemq5 +type: activemq5 +--- + +[Overview](overview) > [Download](download) > [ActiveMQ 5.15.11 Release](activemq-51511-release) + +ActiveMQ 5.15.11 Release +----------------------- + +Apache ActiveMQ 5.15.11 includes several resolved[ issues](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&version=12345958) and bug fixes. + +### Getting the Binary Distributions + +Description|Download Link|_Verify_ +---|---|--- +Windows Distribution|[apache-activemq-5.15.11-bin.zip](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.11/apache-activemq-5.15.11-bin.zip&action=download)|[ASC](https://www.apache.org/dist/activemq/5.15.11/apache-activemq-5.15.11-bin.zip.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.11/apache-activemq-5.15.11-bin.zip.sha512) +Unix/Linux/Cygwin Distribution|[apache-activemq-5.15.11-bin.tar.gz](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.11/apache-activemq-5.15.11-bin.tar.gz&action=download)|[ASC](https://www.apache.org/dist/activemq/5.15.11/apache-activemq-5.15.11-bin.tar.gz.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.11/apache-activemq-5.15.11-bin.tar.gz.sha512) + +Verify the Integrity of Downloads +--------------------------------- + +It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps: + +1. Download the [KEYS](http://www.apache.org/dist/activemq/KEYS) +2. Download the asc signature file for the relevant distribution +3. Verify the signatures using the following commands, depending on your use of PGP or GPG: + ``` + $ pgpk -a KEYS + $ pgpv apache-activemq-<version>-bin.tar.gz.asc + ``` + or + ``` + $ pgp -ka KEYS + $ pgp apache-activemq-<version>-bin.tar.gz.asc + ``` + or + ``` + $ gpg --import KEYS + $ gpg --verify apache-activemq-<version>-bin.tar.gz.asc + ``` + +(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.). + +Alternatively, you can verify the MD5 signature on the files. A Unix program called `md5` or `md5sum` is included in most Linux and Unix distributions. It is also available as part of [GNU Textutils](http://www.gnu.org/software/textutils/textutils.html). Windows users can utilize any of the following md5 programs: + +* [md5](http://www.fourmilab.ch/md5/) +* [md5sums](http://www.pc-tools.net/win32/md5sums/) +* [SlavaSoft FSUM](http://www.slavasoft.com/fsum/) + +Getting the Binaries using Maven 3 +---------------------------------- + +To use this release in your maven project, the simplest dependency that you can use in your [Maven POM](http://maven.apache.org/guides/introduction/introduction-to-the-pom.html) is: +``` +<dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-all</artifactId> + <version>5.15.11</version> +</dependency> +``` +If you need more fine grained control of your dependencies (activemq-all is an uber jar) pick and choose from the various components activemq-client, activemq-broker, activemq-xx-store etc. + +Getting the Source Code +----------------------- + +### Source Distributions + +Description|Download Link|Verify +---|---|--- +Source Release|[activemq-parent-5.15.11-source-release.zip](http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.11/activemq-parent-5.15.11-source-release.zip)|[ASC](https://www.apache.org/dist/activemq/5.15.11/activemq-parent-5.15.11-source-release.zip.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.11/activemq-parent-5.15.11-source-release.zip.sha512) + +### Git Tag + +[https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.11](https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.11) + +Change Log +---------- + +For a more detailed view of new features and bug fixes, see the [release notes](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&version=12345958) + +> **Java 8 Required** Review comment: Given it has been years, it feels like it is past time this note could go away. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
