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 08a605289 Automatic Site Publish by Buildbot
08a605289 is described below

commit 08a60528980226fb80bab3c27d97a8340f20e5b2
Author: buildbot <[email protected]>
AuthorDate: Sat Mar 25 07:06:37 2023 +0000

    Automatic Site Publish by Buildbot
---
 ...archives.html => activemq-5018000-release.html} | 183 ++++++++++++---------
 output/download-archives.html                      |   1 +
 output/index.html                                  |  18 +-
 output/news/index.html                             |   7 +
 4 files changed, 126 insertions(+), 83 deletions(-)

diff --git a/output/download-archives.html 
b/output/activemq-5018000-release.html
similarity index 58%
copy from output/download-archives.html
copy to output/activemq-5018000-release.html
index 5d9cb50a7..47c4fa5d5 100644
--- a/output/download-archives.html
+++ b/output/activemq-5018000-release.html
@@ -86,91 +86,126 @@
 <div class="content">
   <div class="page-title-activemq5">
     <div class="container">
-      <h1>Download Archives</h1>
+      <h1>ActiveMQ 5.18.0 Release</h1>
     </div>
   </div>
   <div class="container" >
     <div class="row" style="margin-top: 30px">
       <div class="col-12 activemq5">
-        <p><a href="overview">Overview</a> &gt; <a 
href="download-archives">Download Archives</a></p>
+        
+<p><a href="overview">Overview</a> &gt; <a href="download">Download</a> &gt; 
<a href="/activemq-5018000-release">ActiveMQ 5.18.0 Release</a></p>
 
-<p>You can use the Apache Archives to download previous Apache ActiveMQ 
releases.</p>
+<h2 id="activemq-5180-release">ActiveMQ 5.18.0 Release</h2>
 
+<div class="alert alert-warning">
+  This is an older release. To get the current release, please see the <a 
href="/components/classic/download" class="alert-link">download page</a>.
+</div>
+
+<p>Apache ActiveMQ 5.18.0 was released on Mar 24th, 2023. It’s a major 
milestone for the ActiveMQ project.
+ActiveMQ 5.18.x brings:</p>
 <ul>
-  <li><a 
href="http://archive.apache.org/dist/activemq/";>http://archive.apache.org/dist/activemq/</a>
 - ActiveMQ releases</li>
-  <li><a 
href="http://archive.apache.org/dist/activemq/apache-activemq/";>http://archive.apache.org/dist/activemq/apache-activemq/</a>
 - Even older ActiveMQ releases</li>
+  <li>JMS2 compliant clients, with one client using javax.jms namespacee and 
one clieent using jakarta.jms namespace</li>
+  <li>Spring 5.3.x</li>
+  <li>optimized LDAP use in LDAP JAAS login module</li>
+  <li>improved REST API</li>
+  <li>improved redelivery policy</li>
+  <li>a lot of dependency updates</li>
+  <li>and much more!</li>
 </ul>
 
-<p>Previous Apache ActiveMQ 5.x release pages:</p>
+<p>You can find details on the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210&amp;version=12351380";>release
 notes</a>.</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 Distribution</td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.zip";>apache-activemq-5.18.0-bin.zip</a></td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.zip.asc";>ASC</a>,
 <a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.zip.sha512";>SHA512</a></td>
+    </tr>
+    <tr>
+      <td>Unix/Linux/Cygwin Distribution</td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.tar.gz";>apache-activemq-5.18.0-bin.tar.gz</a></td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.tar.gz.asc";>ASC</a>,
 <a 
href="https://archive.apache.org/dist/activemq/5.18.0/apache-activemq-5.18.0-bin.tar.gz.sha512";>SHA512</a></td>
+    </tr>
+  </tbody>
+</table>
+
+<p>Java compatibility: <strong>11+</strong></p>
+
+<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 signature or SHA checksum.</p>
+
+<p>The PGP signatures can be verified using PGP or GPG. Begin by following 
these steps:</p>
+
+<ol>
+  <li>Download the <a 
href="https://downloads.apache.org/activemq/KEYS";>KEYS</a> file.</li>
+  <li>Download the .asc signature for the relevant distribution file.</li>
+  <li>Verify the signature using one the following sets of commands, depending 
on your use of PGP or GPG:
+    <div class="language-plaintext highlighter-rouge"><div 
class="highlight"><pre class="highlight"><code>$ gpg --import KEYS
+$ gpg --verify &lt;file-name&gt;.asc &lt;file-name&gt;
+
+$ pgpk -a KEYS
+$ pgpv &lt;file-name&gt;.asc
+
+$ pgp -ka KEYS
+$ pgp &lt;file-name&gt;.asc
+</code></pre></div>    </div>
+  </li>
+</ol>
+
+<p>Alternatively you can [also] verify the SHA-512 checksum of the file. For 
example, using the <code class="language-plaintext 
highlighter-rouge">sha512sum</code> command:</p>
+
+<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>$ sha512sum -c &lt;file-name&gt;.sha512
+</code></pre></div></div>
+
+<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>&lt;dependency&gt;
+  &lt;groupId&gt;org.apache.activemq&lt;/groupId&gt;
+  &lt;artifactId&gt;activemq-all&lt;/artifactId&gt;
+  &lt;version&gt;5.18.0&lt;/version&gt;
+&lt;/dependency&gt;
+</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 Release</td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/activemq-parent-5.18.0-source-release.zip";>activemq-parent-5.18.0-source-release.zip</a></td>
+      <td><a 
href="https://archive.apache.org/dist/activemq/5.18.0/activemq-parent-5.18.0-source-release.zip.asc";>ASC</a>,
 <a 
href="https://archive.apache.org/dist/activemq/5.18.0/activemq-parent-5.18.0-source-release.zip.sha512";>SHA512</a></td>
+    </tr>
+  </tbody>
+</table>
+
+<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&amp;version=12351380";>release
 notes</a></p>
+
+<p>Also see the previous <a href="/activemq-5017004-release">ActiveMQ 5.17.4 
Release</a></p>
 
-<ul>
-  <li><a href="/activemq-5017004-release">ActiveMQ 5.17.4 Release</a></li>
-  <li><a href="/activemq-5017003-release">ActiveMQ 5.17.3 Release</a></li>
-  <li><a href="/activemq-5017002-release">ActiveMQ 5.17.2 Release</a></li>
-  <li><a href="/activemq-5017001-release">ActiveMQ 5.17.1 Release</a></li>
-  <li><a href="/activemq-5017000-release">ActiveMQ 5.17.0 Release</a></li>
-  <li><a href="/activemq-5016006-release">ActiveMQ 5.16.6 Release</a></li>
-  <li><a href="/activemq-5016005-release">ActiveMQ 5.16.5 Release</a></li>
-  <li><a href="/activemq-5016004-release">ActiveMQ 5.16.4 Release</a></li>
-  <li><a href="/activemq-5016003-release">ActiveMQ 5.16.3 Release</a></li>
-  <li><a href="/activemq-5016002-release">ActiveMQ 5.16.2 Release</a></li>
-  <li><a href="/activemq-5016001-release">ActiveMQ 5.16.1 Release</a></li>
-  <li><a href="/activemq-5016000-release">ActiveMQ 5.16.0 Release</a></li>
-  <li><a href="/activemq-5015015-release">ActiveMQ 5.15.15 Release</a></li>
-  <li><a href="/activemq-5015014-release">ActiveMQ 5.15.14 Release</a></li>
-  <li><a href="/activemq-5015013-release">ActiveMQ 5.15.13 Release</a></li>
-  <li><a href="/activemq-5015012-release">ActiveMQ 5.15.12 Release</a></li>
-  <li><a href="/activemq-5015011-release">ActiveMQ 5.15.11 Release</a></li>
-  <li><a href="/activemq-5015010-release">ActiveMQ 5.15.10 Release</a></li>
-  <li><a href="/activemq-5015009-release">ActiveMQ 5.15.9 Release</a></li>
-  <li><a href="/activemq-5015008-release">ActiveMQ 5.15.8 Release</a></li>
-  <li><a href="/activemq-5015007-release">ActiveMQ 5.15.7 Release</a></li>
-  <li><a href="/activemq-5015006-release">ActiveMQ 5.15.6 Release</a></li>
-  <li><a href="/activemq-5015005-release">ActiveMQ 5.15.5 Release</a></li>
-  <li><a href="/activemq-5015004-release">ActiveMQ 5.15.4 Release</a></li>
-  <li><a href="/activemq-5015003-release">ActiveMQ 5.15.3 Release</a></li>
-  <li><a href="/activemq-5015002-release">ActiveMQ 5.15.2 Release</a></li>
-  <li><a href="/activemq-5015001-release">ActiveMQ 5.15.1 Release</a></li>
-  <li><a href="/activemq-5015000-release">ActiveMQ 5.15.0 Release</a></li>
-  <li><a href="/activemq-5014005-release">ActiveMQ 5.14.5 Release</a></li>
-  <li><a href="/activemq-5014004-release">ActiveMQ 5.14.4 Release</a></li>
-  <li><a href="/activemq-5014003-release">ActiveMQ 5.14.3 Release</a></li>
-  <li><a href="/activemq-5014002-release">ActiveMQ 5.14.2 Release</a></li>
-  <li><a href="/activemq-5014001-release">ActiveMQ 5.14.1 Release</a></li>
-  <li><a href="/activemq-5014000-release">ActiveMQ 5.14.0 Release</a></li>
-  <li><a href="/activemq-5013004-release">ActiveMQ 5.13.4 Release</a></li>
-  <li><a href="/activemq-5013003-release">ActiveMQ 5.13.3 Release</a></li>
-  <li><a href="/activemq-5013002-release">ActiveMQ 5.13.2 Release</a></li>
-  <li><a href="/activemq-5013001-release">ActiveMQ 5.13.1 Release</a></li>
-  <li><a href="/activemq-5013000-release">ActiveMQ 5.13.0 Release</a></li>
-  <li><a href="/activemq-5012002-release">ActiveMQ 5.12.2 Release</a></li>
-  <li><a href="/activemq-5012001-release">ActiveMQ 5.12.1 Release</a></li>
-  <li><a href="/activemq-5012000-release">ActiveMQ 5.12.0 Release</a></li>
-  <li><a href="/activemq-5011003-release">ActiveMQ 5.11.3 Release</a></li>
-  <li><a href="/activemq-5011002-release">ActiveMQ 5.11.2 Release</a></li>
-  <li><a href="/activemq-5011001-release">ActiveMQ 5.11.1 Release</a></li>
-  <li><a href="/activemq-5011000-release">ActiveMQ 5.11.0 Release</a></li>
-  <li><a href="/activemq-5010002-release">ActiveMQ 5.10.2 Release</a></li>
-  <li><a href="/activemq-5010001-release">ActiveMQ 5.10.1 Release</a></li>
-  <li><a href="/activemq-5010000-release">ActiveMQ 5.10.0 Release</a></li>
-  <li><a href="/activemq-5009001-release">ActiveMQ 5.9.1 Release</a></li>
-  <li><a href="/activemq-5009000-release">ActiveMQ 5.9.0 Release</a></li>
-  <li><a href="/activemq-5008000-release">ActiveMQ 5.8.0 Release</a></li>
-  <li><a href="/activemq-5007000-release">ActiveMQ 5.7.0 Release</a></li>
-  <li><a href="/activemq-5006000-release">ActiveMQ 5.6.0 Release</a></li>
-  <li><a href="/activemq-5005001-release">ActiveMQ 5.5.1 Release</a></li>
-  <li><a href="/activemq-5005000-release">ActiveMQ 5.5.0 Release</a></li>
-  <li><a href="/activemq-5004003-release">ActiveMQ 5.4.3 Release</a></li>
-  <li><a href="/activemq-5004002-release">ActiveMQ 5.4.2 Release</a></li>
-  <li><a href="/activemq-5004001-release">ActiveMQ 5.4.1 Release</a></li>
-  <li><a href="/activemq-5004000-release">ActiveMQ 5.4.0 Release</a></li>
-  <li><a href="/activemq-5003002-release">ActiveMQ 5.3.2 Release</a></li>
-  <li><a href="/activemq-5003001-release">ActiveMQ 5.3.1 Release</a></li>
-  <li><a href="/activemq-5003000-release">ActiveMQ 5.3.0 Release</a></li>
-  <li><a href="/activemq-5002000-release">ActiveMQ 5.2.0 Release</a></li>
-  <li><a href="/activemq-5001000-release">ActiveMQ 5.1.0 Release</a></li>
-  <li><a href="/activemq-5000000-release">ActiveMQ 5.0.0 Release</a></li>
-</ul>
 
       </div>
     </div>
diff --git a/output/download-archives.html b/output/download-archives.html
index 5d9cb50a7..973e49dbb 100644
--- a/output/download-archives.html
+++ b/output/download-archives.html
@@ -104,6 +104,7 @@
 <p>Previous Apache ActiveMQ 5.x release pages:</p>
 
 <ul>
+  <li><a href="/activemq-5018000-release">ActiveMQ 5.18.0 Release</a></li>
   <li><a href="/activemq-5017004-release">ActiveMQ 5.17.4 Release</a></li>
   <li><a href="/activemq-5017003-release">ActiveMQ 5.17.3 Release</a></li>
   <li><a href="/activemq-5017002-release">ActiveMQ 5.17.2 Release</a></li>
diff --git a/output/index.html b/output/index.html
index 3a989783b..3aa4097b3 100644
--- a/output/index.html
+++ b/output/index.html
@@ -123,13 +123,13 @@
 <div class="card card-grey-small">
 <div class="card-body ml-0 p-2">
 
-    <h6 class="card-title"><a class="text-blue" 
href="/components/nms/providers/amqp/downloads/">Apache.NMS.AMQP 2.1.0 
Release</a></h6>
+    <h6 class="card-title"><a class="text-blue" 
href="/activemq-5018000-release">ActiveMQ 5.18.0 Release</a></h6>
 
 
 
-    Security enhancement for binary serialization by adding allow/deny list of 
types.<a style="display: unset;" class="nav-link pl-0 ml-0" 
href="/components/nms/providers/amqp/downloads/">...more</a>
+    5.18.0 is an important milestone, starting the new 5.18.x series. It 
brings JMS2 clients (both javax and jakarta namespaces), Spring 5.3.x, a bunch 
of dependency updates, and a lot of fixes and improvements.<a style="display: 
unset;" class="nav-link pl-0 ml-0" href="/activemq-5018000-release">...more</a>
 
-    <p class="small text-muted text-right font-italic mb-0">Mar 21st, 2023</p>
+    <p class="small text-muted text-right font-italic mb-0">Mar 24th, 2023</p>
 </div>
 </div>
 
@@ -137,13 +137,13 @@
 <div class="card card-grey-small">
 <div class="card-body ml-0 p-2">
 
-    <h6 class="card-title"><a class="text-blue" 
href="/components/nms/providers/activemq/downloads/apachenmsactivemq-v210">Apache.NMS.ActiveMQ
 2.1.0 Release</a></h6>
+    <h6 class="card-title"><a class="text-blue" 
href="/components/nms/providers/amqp/downloads/">Apache.NMS.AMQP 2.1.0 
Release</a></h6>
 
 
 
-    Security enhancement for binary serialization by adding allow/deny list of 
types.<a style="display: unset;" class="nav-link pl-0 ml-0" 
href="/components/nms/providers/activemq/downloads/apachenmsactivemq-v210">...more</a>
+    Security enhancement for binary serialization by adding allow/deny list of 
types.<a style="display: unset;" class="nav-link pl-0 ml-0" 
href="/components/nms/providers/amqp/downloads/">...more</a>
 
-    <p class="small text-muted text-right font-italic mb-0">Mar 12th, 2023</p>
+    <p class="small text-muted text-right font-italic mb-0">Mar 21st, 2023</p>
 </div>
 </div>
 
@@ -151,13 +151,13 @@
 <div class="card card-grey-small">
 <div class="card-body ml-0 p-2">
 
-    <h6 class="card-title"><a class="text-blue" 
href="/activemq-5017004-release">ActiveMQ 5.17.4 Release</a></h6>
+    <h6 class="card-title"><a class="text-blue" 
href="/components/nms/providers/activemq/downloads/apachenmsactivemq-v210">Apache.NMS.ActiveMQ
 2.1.0 Release</a></h6>
 
 
 
-    Maintenance release on 5.17.x series, containing Spring 5.3.25, xstream 
1.4.20, and a lot of other fixes and improvements.<a style="display: unset;" 
class="nav-link pl-0 ml-0" href="/activemq-5017004-release">...more</a>
+    Security enhancement for binary serialization by adding allow/deny list of 
types.<a style="display: unset;" class="nav-link pl-0 ml-0" 
href="/components/nms/providers/activemq/downloads/apachenmsactivemq-v210">...more</a>
 
-    <p class="small text-muted text-right font-italic mb-0">Feb 25th, 2023</p>
+    <p class="small text-muted text-right font-italic mb-0">Mar 12th, 2023</p>
 </div>
 </div>
 
diff --git a/output/news/index.html b/output/news/index.html
index af7a7d434..03e48cf90 100644
--- a/output/news/index.html
+++ b/output/news/index.html
@@ -94,6 +94,13 @@
       <div class="col-12 main">
         <p><a href="/">Home</a> &gt; <a href="/news">News</a></p>
 
+<h3 id="activemq-5180-release">ActiveMQ 5.18.0 Release</h3>
+<p><span class="text-secondary"> Mar 24th, 2023</span></p>
+
+<p>5.18.0 is an important milestone, starting the new 5.18.x series. It brings 
JMS2 clients (both javax and jakarta namespaces), Spring 5.3.x, a bunch of 
dependency updates, and a lot of fixes and improvements.</p>
+
+<p><a href="/activemq-5018000-release">Read More</a></p>
+
 <h3 id="apachenmsamqp-210-release">Apache.NMS.AMQP 2.1.0 Release</h3>
 <p><span class="text-secondary"> Mar 21st, 2023</span></p>
 

Reply via email to