This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/activemq-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 1b46597 Automatic Site Publish by Buildbot
1b46597 is described below
commit 1b46597a81a17d8ed3ad785cdf8c49654976705b
Author: buildbot <[email protected]>
AuthorDate: Tue Dec 15 09:18:27 2020 +0000
Automatic Site Publish by Buildbot
---
.../index.html => activemq-51514-release.html} | 107 +++++++++++++++++----
output/components/classic/download/index.html | 27 ++++++
output/download-archives.html | 1 +
3 files changed, 118 insertions(+), 17 deletions(-)
diff --git a/output/components/classic/download/index.html
b/output/activemq-51514-release.html
similarity index 60%
copy from output/components/classic/download/index.html
copy to output/activemq-51514-release.html
index 4ee7169..1bb6ff3 100644
--- a/output/components/classic/download/index.html
+++ b/output/activemq-51514-release.html
@@ -86,42 +86,115 @@
<div class="content">
<div class="page-title-activemq5">
<div class="container">
- <h1>ActiveMQ 5 Download</h1>
+ <h1>ActiveMQ 5.15.14 Release</h1>
</div>
</div>
<div class="container" >
<div class="row" style="margin-top: 30px">
<div class="col-12 activemq5">
- <p>These are the current releases. For prior releases, please see the
<a href="../../../download-archives">past releases</a> page.</p>
+ <p><a href="overview">Overview</a> > <a
href="download">Download</a> > <a href="activemq-51514-release">ActiveMQ
5.15.14 Release</a></p>
-<h4 id="activemq-5160-jul-1-2020">ActiveMQ 5.16.0 (Jul 1, 2020)</h4>
+<h2 id="activemq-51514-release">ActiveMQ 5.15.14 Release</h2>
-<p><a href="../documentation">Documentation</a></p>
+<p>Apache ActiveMQ 5.15.14 includes several resolved<a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&version=12348294">
issues</a> and bug fixes.</p>
+
+<h3 id="getting-the-binary-distributions">Getting the Binary Distributions</h3>
<table>
+ <thead>
+ <tr>
+ <th>Description</th>
+ <th>Download Link</th>
+ <th><em>Verify</em></th>
+ </tr>
+ </thead>
<tbody>
<tr>
- <td>Windows</td>
- <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.16.0/apache-activemq-5.16.0-bin.zip&action=download">apache-activemq-5.16.0-bin.zip</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/apache-activemq-5.16.0-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/apache-activemq-5.16.0-bin.zip.asc">GPG
Signature</a></td>
+ <td>Windows Distribution</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.14/apache-activemq-5.15.14-bin.zip&action=download">apache-activemq-5.15.14-bin.zip</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.zip.asc">ASC</a>,
<a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.zip.sha512">SHA512</a></td>
</tr>
<tr>
- <td>Unix/Linux/Cygwin</td>
- <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.16.0/apache-activemq-5.16.0-bin.tar.gz&action=download">apache-activemq-5.16.0-bin.tar.gz</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/apache-activemq-5.16.0-bin.tar.gz.sha512">SHA512</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/apache-activemq-5.16.0-bin.tar.gz.asc">GPG
Signature</a></td>
+ <td>Unix/Linux/Cygwin Distribution</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz&action=download">apache-activemq-5.15.14-bin.tar.gz</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz.asc">ASC</a>,
<a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz.sha512">SHA512</a></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="verify-the-integrity-of-downloads">Verify the Integrity of
Downloads</h2>
+
+<p>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:</p>
+
+<ol>
+ <li>Download the <a
href="http://www.apache.org/dist/activemq/KEYS">KEYS</a></li>
+ <li>Download the asc signature file for the relevant distribution</li>
+ <li>Verify the signatures using the following commands, depending on your
use of PGP or GPG:
+ <div class="language-plaintext highlighter-rouge"><div
class="highlight"><pre class="highlight"><code>$ pgpk -a KEYS
+$ pgpv apache-activemq-<version>-bin.tar.gz.asc
+</code></pre></div> </div>
+ <p>or</p>
+ <div class="language-plaintext highlighter-rouge"><div
class="highlight"><pre class="highlight"><code>$ pgp -ka KEYS
+$ pgp apache-activemq-<version>-bin.tar.gz.asc
+</code></pre></div> </div>
+ <p>or</p>
+ <div class="language-plaintext highlighter-rouge"><div
class="highlight"><pre class="highlight"><code>$ gpg --import KEYS
+$ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
+</code></pre></div> </div>
+ </li>
+</ol>
+
+<p>(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0,
etc.).</version></p>
+
+<p>Alternatively, you can verify the MD5 signature on the files. A Unix
program called <code class="language-plaintext highlighter-rouge">md5</code> or
<code class="language-plaintext highlighter-rouge">md5sum</code> is included in
most Linux and Unix distributions. It is also available as part of <a
href="http://www.gnu.org/software/textutils/textutils.html">GNU Textutils</a>.
Windows users can utilize any of the following md5 programs:</p>
+
+<ul>
+ <li><a href="http://www.fourmilab.ch/md5/">md5</a></li>
+ <li><a href="http://www.pc-tools.net/win32/md5sums/">md5sums</a></li>
+ <li><a href="http://www.slavasoft.com/fsum/">SlavaSoft FSUM</a></li>
+</ul>
+
+<h2 id="getting-the-binaries-using-maven-3">Getting the Binaries using Maven
3</h2>
+
+<p>To use this release in your maven project, the simplest dependency that you
can use in your <a
href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">Maven
POM</a> is:</p>
+<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre
class="highlight"><code><dependency>
+ <groupId>org.apache.activemq</groupId>
+ <artifactId>activemq-all</artifactId>
+ <version>5.15.14</version>
+</dependency>
+</code></pre></div></div>
+<p>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.</p>
+
+<h2 id="getting-the-source-code">Getting the Source Code</h2>
+
+<h3 id="source-distributions">Source Distributions</h3>
+
+<table>
+ <thead>
+ <tr>
+ <th>Description</th>
+ <th>Download Link</th>
+ <th>Verify</th>
</tr>
+ </thead>
+ <tbody>
<tr>
- <td>Source Code Distribution:</td>
- <td><a
href="http://www.apache.org/dyn/closer.cgi?path=/activemq/5.16.0/activemq-parent-5.16.0-source-release.zip">activemq-parent-5.16.0-source-release.zip</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/activemq-parent-5.16.0-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://www.apache.org/dist/activemq/5.16.0/activemq-parent-5.16.0-source-release.zip.asc">GPG
Signature</a></td>
+ <td>Source Release</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip">activemq-parent-5.15.14-source-release.zip</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip.asc">ASC</a>,
<a
href="https://www.apache.org/dist/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip.sha512">SHA512</a></td>
</tr>
</tbody>
</table>
-<p>The keys file for verifying the release can be obtained <a
href="https://www.apache.org/dist/activemq/KEYS">here</a></p>
+<h3 id="git-tag">Git Tag</h3>
+
+<p><a
href="https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.14">https://gitbox.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.15.14</a></p>
+
+<h2 id="change-log">Change Log</h2>
+
+<p>For a more detailed view of new features and bug fixes, see the <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&version=12348294">release
notes</a></p>
+
+<p>Also see the previous <a href="activemq-51513-release">ActiveMQ 5.15.13
Release</a></p>
</div>
</div>
diff --git a/output/components/classic/download/index.html
b/output/components/classic/download/index.html
index 4ee7169..87831e3 100644
--- a/output/components/classic/download/index.html
+++ b/output/components/classic/download/index.html
@@ -121,6 +121,33 @@
</tbody>
</table>
+<h4 id="activemq-51514-dec-9-2020">ActiveMQ 5.15.14 (Dec 9, 2020)</h4>
+
+<p><a href="../documentation">Documentation</a></p>
+
+<table>
+ <tbody>
+ <tr>
+ <td>Windows</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.14/apache-activemq-5.15.14-bin.zip&action=download">apache-activemq-5.15.14-bin.zip</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.zip.asc">GPG
Signature</a></td>
+ </tr>
+ <tr>
+ <td>Unix/Linux/Cygwin</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?filename=/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz&action=download">apache-activemq-5.15.14-bin.tar.gz</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz.sha512">SHA512</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/apache-activemq-5.15.14-bin.tar.gz.asc">GPG
Signature</a></td>
+ </tr>
+ <tr>
+ <td>Source Code Distribution:</td>
+ <td><a
href="http://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip">activemq-parent-5.15.14-source-release.zip</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://www.apache.org/dist/activemq/5.15.14/activemq-parent-5.15.14-source-release.zip.asc">GPG
Signature</a></td>
+ </tr>
+ </tbody>
+</table>
+
<p>The keys file for verifying the release can be obtained <a
href="https://www.apache.org/dist/activemq/KEYS">here</a></p>
</div>
diff --git a/output/download-archives.html b/output/download-archives.html
index 3a73440..b0a528e 100644
--- a/output/download-archives.html
+++ b/output/download-archives.html
@@ -105,6 +105,7 @@
<ul>
<li><a href="activemq-5160-release">ActiveMQ 5.16.0 Release</a></li>
+ <li><a href="activemq-51514-release">ActiveMQ 5.15.14 Release</a></li>
<li><a href="activemq-51513-release">ActiveMQ 5.15.13 Release</a></li>
<li><a href="activemq-51512-release">ActiveMQ 5.15.12 Release</a></li>
<li><a href="activemq-51511-release">ActiveMQ 5.15.11 Release</a></li>