Apache FtpServer 1.1.1 Release

New Features in 1.1.1

This release fixes a few issues found since the release of 1.1.0.

Changelog

For a more detailed view of new features and bug fixes, see the release notes

Getting the Binary Distributions

Description Download Link SHA1 hashes PGP Signature file of download
zip distribution apache-ftpserver-1.1.1.zip SHA1 ASC
tar.gz distribution apache-ftpserver-1.1.1.tar.gz SHA1 ASC
tar.bz2 distribution apache-ftpserver-1.1.1.tar.bz2 SHA1 ASC

Verify the Integrity of Downloads

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:

  1. Download the 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 ftpserver-1.1.1.tar.gz.asc
    

    or

    $ pgp -ka KEYS
    $ pgp ftpserver-1.1.1.tar.gz.asc ftpserver-1.1.1.tar.gz
    

    or

    $ gpg --import KEYS
    $ gpg --verify ftpserver-1.1.1.tar.gz.asc ftpserver-1.1.1.tar.gz
    

Getting the Binaries using Maven 2

To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is:

<dependency>
    <groupId>org.apache.ftpserver</groupId>
    <artifactId>ftpserver-core</artifactId>
    <version>1.1.1</version>
</dependency>

Getting the Source Code

Source Distributions

Description Download Link SHA1 hashes PGP Signature file of download
zip sources apache-ftpserver-1.1.1-src.zip SHA1 ASC
tar.gz sources apache-ftpserver-1.1.1-src.tar.gz SHA1 ASC
tar.bz2 sources apache-ftpserver-1.1.1-src.tar.bz2 SHA1 ASC

Git Tag Checkout

$ git clone https://gitbox.apache.org/repos/asf/mina-ftpserver.git
$ git checkout ftpserver-1.1.1

You are now on 1.1.1 branch.