You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Witek (JIRA)" <ji...@apache.org> on 2016/06/08 22:07:21 UTC

[jira] [Created] (WAGON-458) Implementation for FTPS

Witek created WAGON-458:
---------------------------

             Summary: Implementation for FTPS
                 Key: WAGON-458
                 URL: https://issues.apache.org/jira/browse/WAGON-458
             Project: Maven Wagon
          Issue Type: Bug
          Components: wagon-ftp
    Affects Versions: 2.10
            Reporter: Witek


h4. Descrption

There was a pull request created by [@flavioarcega|https://github.com/flavioarcega] Github user for FTPS support (please note, that FTPS is something different from SFTP).

For me the support for FTPS is also important. I'd like to use wagon-ftp extension for my project site deploying. I could use simple FTP protocol or FTPS with explicit TLS.

*actual:*
only simple FTP protocol is supported for wagon-ftp, which sends username and password in plaintext over the web

*expected:*
secure FTP client may be configured for wagon-ftp


h4. The sample configuration for FTPS could look like this:

*pom.xml:*

{code}
<project>
    ...
    <distributionManagement>
        ...
        <site>
            <id>ftp.server.id</id>
            <url>ftp://ftp.example.com</url>
        </site>
    </distributionManagement>
    ...
</project>
{code}

*settings.xml:*

{code}
<settings>
    ...
    <servers>
        ...
        <server>
            <id>ftp.server.id</id>
            <username>username</username>
            <password>password</password>
            <configuration>
                <secure>true</secure>
            </configuration>
        </server>
    </servers>
<settings>
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)