You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cs...@apache.org on 2019/09/20 13:53:15 UTC

[activemq-website] 01/05: Publish ActiveMQ 5.15.10 release

This is an automated email from the ASF dual-hosted git repository.

cshannon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-website.git

commit e8c8d25be712d8a282d581606be06e8297e14256
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Fri Sep 20 07:46:33 2019 +0200

    Publish ActiveMQ 5.15.10 release
---
 src/activemq-51510-release.md            | 88 ++++++++++++++++++++++++++++++++
 src/components/classic/download/index.md |  8 +--
 src/download-archives.md                 |  1 +
 src/xml-reference.md                     |  3 +-
 4 files changed, 95 insertions(+), 5 deletions(-)

diff --git a/src/activemq-51510-release.md b/src/activemq-51510-release.md
new file mode 100644
index 0000000..f2ab48d
--- /dev/null
+++ b/src/activemq-51510-release.md
@@ -0,0 +1,88 @@
+---
+layout: default_md
+title: ActiveMQ 5.15.10 Release 
+title-class: page-title-activemq5
+type: activemq5
+---
+
+[Overview](overview) > [Download](download) > [ActiveMQ 5.15.10 Release](activemq-51510-release)
+
+ActiveMQ 5.15.10 Release
+-----------------------
+
+Apache ActiveMQ 5.15.10 includes several resolved[ issues](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&version=12345171) and bug fixes.
+
+### Getting the Binary Distributions
+
+Description|Download Link|_Verify_
+---|---|---
+Windows Distribution|[apache-activemq-5.15.10-bin.zip](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.10/apache-activemq-5.15.10-bin.zip&action=download)|[ASC](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.zip.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.zip.sha512)
+Unix/Linux/Cygwin Distribution|[apache-activemq-5.15.10-bin.tar.gz](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.10/apache-activemq-5.15.10-bin.tar.gz&action=download)|[ASC](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.tar.gz.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-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.10</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.10-source-release.zip](http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip)|[ASC](https://www.apache.org/dist/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip.asc), [SHA512](https://www.apache.org/dist/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip.sha512)
+
+### Git Tag
+
+[https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.10](https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.10)
+
+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=12345171)
+
+> **Java 8 Required**
+> 
+> The minimum Java version has been upgraded to Java 8.
+
+Also see the previous [ActiveMQ 5.15.9 Release](activemq-5159-release)
diff --git a/src/components/classic/download/index.md b/src/components/classic/download/index.md
index 7a99e1d..3fca5bf 100644
--- a/src/components/classic/download/index.md
+++ b/src/components/classic/download/index.md
@@ -7,12 +7,12 @@ type: activemq5
 
 These are the current releases. For prior releases, please see the [past releases](../../../download-archives) page.
 
-#### ActiveMQ 5.15.9 (March 19, 2019)
+#### ActiveMQ 5.15.10 (August 28, 2019)
 
 [Documentation](../documentation)
 
-Windows|[apache-activemq-5.15.9-bin.zip](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.9/apache-activemq-5.15.9-bin.zip&action=download)|[SHA512](https://www.apache.org/dist/activemq/5.15.9/apache-activemq-5.15.9-bin.zip.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.9/apache-activemq-5.15.9-bin.zip.asc)
-Unix/Linux/Cygwin|[apache-activemq-5.15.9-bin.tar.gz](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz&action=download)|[SHA512](https://www.apache.org/dist/activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz.asc)
-Source Code Distribution:|[activemq-parent-5.15.9-source-release.zip](http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.9/activemq-parent-5.15.9-source-release.zip)|[SHA512](https://www.apache.org/dist/activemq/5.15.9/activemq-parent-5.15.9-source-release.zip.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.9/activemq-parent-5.15.9-source-release.zip.asc)
+Windows|[apache-activemq-5.15.10-bin.zip](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.10/apache-activemq-5.15.10-bin.zip&action=download)|[SHA512](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.zip.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.zip.asc)
+Unix/Linux/Cygwin|[apache-activemq-5.15.10-bin.tar.gz](http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.10/apache-activemq-5.15.10-bin.tar.gz&action=download)|[SHA512](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.tar.gz.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.10/apache-activemq-5.15.10-bin.tar.gz.asc)
+Source Code Distribution:|[activemq-parent-5.15.10-source-release.zip](http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip)|[SHA512](https://www.apache.org/dist/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip.sha512)|[GPG Signature](https://www.apache.org/dist/activemq/5.15.10/activemq-parent-5.15.10-source-release.zip.asc)
 
 The keys file for verifying the release can be obtained [here](https://www.apache.org/dist/activemq/KEYS)
diff --git a/src/download-archives.md b/src/download-archives.md
index 40ff6c7..f59c0f5 100644
--- a/src/download-archives.md
+++ b/src/download-archives.md
@@ -14,6 +14,7 @@ You can use the Apache Archives to download previous Apache ActiveMQ releases.
 
 All time Apache ActiveMQ releases pages:
 
+*   [ActiveMQ 5.15.10 Release](activemq-51510-release)
 *   [ActiveMQ 5.15.9 Release](activemq-5159-release)
 *   [ActiveMQ 5.15.8 Release](activemq-5158-release)
 *   [ActiveMQ 5.15.7 Release](activemq-5157-release)
diff --git a/src/xml-reference.md b/src/xml-reference.md
index 1749114..3b1e57b 100644
--- a/src/xml-reference.md
+++ b/src/xml-reference.md
@@ -51,6 +51,7 @@ XBean XML Reference 5.14.2|[Reference](http://activemq.apache.org/schema/core/ac
 XBean XML Reference 5.14.3|[Reference](http://activemq.apache.org/schema/core/activemq-core-5.14.3-schema.html)|[http://activemq.apache.org/schema/core/activemq-core-5.14.3.xsd](http://activemq.apache.org/schema/core/activemq-core-5.14.3.xsd)|[http://activemq.apache.org/schema/core](http://activemq.apache.org/schema/core)
 XBean XML Reference 5.14.4|[Reference](http://activemq.apache.org/schema/core/activemq-core-5.14.4-schema.html)|[http://activemq.apache.org/schema/core/activemq-core-5.14.4.xsd](http://activemq.apache.org/schema/core/activemq-core-5.14.4.xsd)|[http://activemq.apache.org/schema/core](http://activemq.apache.org/schema/core)
 XBean XML Reference 5.14.5|[Reference](http://activemq.apache.org/schema/core/activemq-core-5.14.5-schema.html)|[http://activemq.apache.org/schema/core/activemq-core-5.14.5.xsd](http://activemq.apache.org/schema/core/activemq-core-5.14.5.xsd)|[http://activemq.apache.org/schema/core](http://activemq.apache.org/schema/core)
+XBean XML Reference 5.15.10|[Reference](http://activemq.apache.org/schema/core/activemq-core-5.15.10-schema.html)|[http://activemq.apache.org/schema/core/activemq-core-5.15.10.xsd](http://activemq.apache.org/schema/core/activemq-core-5.15.10.xsd)|[http://activemq.apache.org/schema/core](http://activemq.apache.org/schema/core)
 
 Using the XSDs in configuration files
 -------------------------------------
@@ -266,4 +267,4 @@ ACTIVEMQ_HOME: /Users/bsnyder/amq/apache-activemq-5.4.1
 ACTIVEMQ_BASE: /Users/bsnyder/amq/apache-activemq-5.4.1  
 Loading message broker from: xbean:file:/Users/bsnyder/SpringSource/clients/Finra/activemq-example-unordered.xml  
 ...
-```
\ No newline at end of file
+```