blob: 2e74c54f42d3a1c39d0adb3fc21b633af638ac05 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<title>Apache Vysper 0.5 Release &mdash; Apache MINA</title>
<link href="/assets/css/common.css" rel="stylesheet" type="text/css"/>
<link href="/assets/css/vysper.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<script src="https://www.apachecon.com/event-images/snippet.js"></script>
<div id="container">
<div id="header">
<div id="subProjectsNavBar">
<a href="/">
Apache MINA Project
</a>
&nbsp;|&nbsp;
<a href="/mina-project/">
MINA
</a>
&nbsp;|&nbsp;
<a href="/asyncweb-project/">
AsyncWeb
</a>
&nbsp;|&nbsp;
<a href="/ftpserver-project/">
FtpServer
</a>
&nbsp;|&nbsp;
<a href="/sshd-project/">
SSHD
</a>
&nbsp;|&nbsp;
<a href="/vysper-project/">
<strong>Vysper</strong>
</a>
</div>
</div>
<div id="content">
<div id="leftColumn">
<div id="navigation">
<a class="acevent" data-format="wide" data-width="170"></a>
<h5>Social Networks</h5>
<ul>
<li><a href="https://fosstodon.org/@apachemina">Apache MINA Mastodon</a></li>
</ul>
<h5>Overview</h5>
<ul>
<li><a href="/vysper-project/index.html">Home</a> </li>
<li><a href="/vysper-project/documentation.html">Documentation</a></li>
<li><a href="/vysper-project/downloads.html">Downloads</a></li>
<li><a href="/vysper-project/sources.html">Source</a></li>
</ul>
<h5>Community</h5>
<ul>
<li><a href="/vysper-project/mailing_lists.html">Mailing Lists</a></li>
<li><a href="/vysper-project/getting_involved.html">Getting Involved</a></li>
<li><a href="/vysper-project/issue_tracking.html">Issue Tracking</a></li>
<li><a href="https://www.apache.org/foundation/contributing.html">Contributing</a></li>
<li><a href="https://www.apache.org/licenses/">License</a></li>
<li><a href="https://www.apache.org/security/">Security</a></li>
</ul>
<h5>Sponsorship</h5>
<ul>
<li><a href="https://www.apache.org/foundation/thanks.html">Thanks</a></li>
<li><a href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
<li><a href="https://www.apache.org/">apache.org</a></li>
</ul>
</div>
</div>
<div id="rightColumn">
<h1 id="new-features-in-05">New Features in 0.5</h1>
<p>This is the first release of Apache Vysper. The release contains partial implementations of the following specifications:</p>
<ul>
<li>RFC 3920 XMPP Core</li>
<li>RFC 3921 XMPP IM</li>
<li>XEP-0045 Multi-user chat</li>
<li>XEP-0060 Publish-subscribe</li>
</ul>
<h1 id="getting-the-binary-distributions">Getting the Binary Distributions</h1>
<table>
<thead>
<tr>
<th>Description</th>
<th>Download Link</th>
<th>PGP Signature file of download</th>
</tr>
</thead>
<tbody>
<tr>
<td>Windows Distribution</td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-bin.zip">vysper-0.5-bin.zip</a></td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-bin.zip.asc">vysper-0.5-bin.zip.asc</a></td>
</tr>
<tr>
<td>Unix/Linux/Cygwin Distribution</td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-bin.tar.gz">vysper-0.5-bin.tar.gz</a></td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-bin.tar.gz.asc">vysper-0.5-bin.tar.gz.asc</a></td>
</tr>
</tbody>
</table>
<h1 id="verify-the-integrity-of-downloads">Verify the Integrity of Downloads</h1>
<p>It is essential that you verify the integrity of the downloaded files using the PGP signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:</p>
<ol>
<li>
<p>Download the <a href="https://downloads.apache.org/mina/KEYS">KEYS</a></p>
</li>
<li>
<p>Download the asc signature file for the relevant distribution</p>
</li>
<li>
<p>Verify the signatures using the following commands, depending on your use of PGP or GPG:</p>
<pre><code> $ pgpk -a KEYS
$ pgpv vysper-&lt;version&gt;-bin.tar.gz.asc
</code></pre>
<p>or</p>
<pre><code> $ pgp -ka KEYS
$ pgp vysper-&lt;version&gt;-bin.tar.gz.asc
</code></pre>
<p>or</p>
<pre><code> $ gpg --import KEYS
$ gpg --verify vysper-&lt;version&gt;-bin.tar.gz.asc
</code></pre>
<p>(Where <version> is replaced with the actual version, e.g., 0.5).</p>
</li>
</ol>
<h1 id="getting-the-binaries-using-maven-2">Getting the Binaries using Maven 2</h1>
<p>To use this release in your maven project, the proper dependency configuration that you should use in your <a href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">Maven POM</a> is:</p>
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-xml" data-lang="xml"><span style="color:#008000;font-weight:bold">&lt;dependency</span><span style="color:#008000;font-weight:bold">&gt;</span>
<span style="color:#008000;font-weight:bold">&lt;groupId</span><span style="color:#008000;font-weight:bold">&gt;</span>org.apache.vysper<span style="color:#008000;font-weight:bold">&lt;/groupId&gt;</span>
<span style="color:#008000;font-weight:bold">&lt;artifactId</span><span style="color:#008000;font-weight:bold">&gt;</span>vysper-core<span style="color:#008000;font-weight:bold">&lt;/artifactId&gt;</span>
<span style="color:#008000;font-weight:bold">&lt;version</span><span style="color:#008000;font-weight:bold">&gt;</span>0.5<span style="color:#008000;font-weight:bold">&lt;/version&gt;</span>
<span style="color:#008000;font-weight:bold">&lt;/dependency&gt;</span>
</code></pre></div><h1 id="getting-the-source-code">Getting the Source Code</h1>
<h2 id="source-distributions">Source Distributions</h2>
<table>
<thead>
<tr>
<th>Description</th>
<th>Download Link</th>
<th>PGP Signature file of download</th>
</tr>
</thead>
<tbody>
<tr>
<td>Source for Windows</td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-src.zip">vysper-0.5-src.zip</a></td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-src.zip.asc">vysper-0.5-src.zip.asc</a></td>
</tr>
<tr>
<td>Source for Unix/Linux/Cygwin</td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-src.tar.gz">vysper-0.5-src.tar.gz</a></td>
<td><a href="https://archive.apache.org/dist/mina/vysper/0.5/vysper-0.5-src.tar.gz.asc">vysper-0.5-src.tar.gz.asc</a></td>
</tr>
</tbody>
</table>
<pre><code>svn co http://svn.apache.org/repos/asf/mina/vysper/tags/0.5
</code></pre>
</div>
<div id="endContent"></div>
</div>
<div id="footer">
&copy; 2003-2024, <a href="https://www.apache.org">The Apache Software Foundation</a> - <a href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy Policy</a><br />
Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
</div>
</div>
</body>
</html>