[ https://issues.apache.org/jira/browse/WAGON-458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15824624#comment-15824624 ]
ASF GitHub Bot commented on WAGON-458: -------------------------------------- Github user wiiitek commented on the issue: https://github.com/apache/maven-wagon/pull/30 Those change were cherry-picked into master branch on 2016-12-02 by commit: https://github.com/apache/maven-wagon/commit/e30c31d4bd0762ec0ec54ae44fc1f3ef407c81c1 > Implementation for FTPS > ----------------------- > > Key: WAGON-458 > URL: https://issues.apache.org/jira/browse/WAGON-458 > Project: Maven Wagon > Issue Type: Improvement > Components: wagon-ftp > Affects Versions: 2.10 > Reporter: Witek > Assignee: Dan Tran > Labels: security > Fix For: 2.11 > > > 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)