You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dan Tran (JIRA)" <ji...@apache.org> on 2016/12/02 04:42:59 UTC

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

     [ https://issues.apache.org/jira/browse/WAGON-458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Tran closed WAGON-458.
--------------------------
       Resolution: Fixed
         Assignee: Dan Tran
    Fix Version/s: 2.11

> 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
>            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)