source/downloads.html (86 lines of code) (raw):
---
---
{% include header.html %}
<h1>Download Apache SDAP (incubating) releases</h1>
<p>The table below contains links to download the Apache SDAP (incubating) module source distributions as well as their signature and checksum files from ASF mirrors.</p>
<h2>SDAP</h2>
<h3>Latest Components</h3>
<table class="version-table">
<thead>
<tr>
<th>Component</th>
<th>Release Version</th>
<th>Release Date</th>
<th>Source Distribution</th>
</tr>
</thead>
<tbody>
{% assign latest = site.data.releases.releases.latest %}
{% for component in latest %}
<tr>
<td>{{ component.displayName }}</td>
<td>{{ component.release }}</td>
<td>{{ component.releaseDate }}</td>
<td>
<a href="https://www.apache.org/dyn/closer.lua/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz">
[source] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
<a href="https://downloads.apache.org/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz.asc">
[signature] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
<a href="https://downloads.apache.org/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz.sha512">
[checksum] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Release History</h3>
<table class="version-table">
<thead>
<tr>
<th>Release Version</th>
<th>Release Date</th>
<th>Component</th>
<th>Source Distribution</th>
</tr>
</thead>
<tbody>
{% assign history = site.data.releases.releases.history %}
{% for release in history %}
{% assign first = true %}
{% for component in release.components %}
<tr>
{% if first %}
<td rowspan="{{ release.components.size }}">{{ release.release }}</td>
<td rowspan="{{ release.components.size }}">{{ release.releaseDate }}</td>
{% assign first = false %}
{% endif %}
<td>{{ component.displayName }}</td>
<td>
<a href="https://www.apache.org/dyn/closer.lua/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz">
[source] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
<a href="https://downloads.apache.org/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz.asc">
[signature] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
<a href="https://downloads.apache.org/incubator/sdap/{{ component.release }}-incubating/apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz.sha512">
[checksum] apache-sdap-{{ component.component }}-{{ component.release }}-incubating-src.tar.gz
</a>
</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
<h2>Instructions</h2>
<p>To download, build and deploy Apache SDAP (incubating):</p>
<ol>
<li>Download the source distributions, signatures and checksums for the version of SDAP you wish to use from the table above.</li>
<li><a href="https://www.apache.org/info/verification.html">Verify</a> the downloaded release artifacts.</li>
<li>Ensure you have <a href="https://www.docker.com/">Docker</a> installed and running.</li>
<li>Use the <a href="https://incubator-sdap-nexus.readthedocs.io/en/latest/build.html">build guide</a> to build the SDAP components.</li>
<li>Use the <a href="https://incubator-sdap-nexus.readthedocs.io/en/latest/quickstart.htmll">quickstart guide</a> to deploy the SDAP components.</li>
</ol>
{% include footer.html %}