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

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

    [ https://issues.apache.org/jira/browse/WAGON-458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15713732#comment-15713732 ] 

ASF GitHub Bot commented on WAGON-458:
--------------------------------------

GitHub user wiiitek opened a pull request:

    https://github.com/apache/maven-wagon/pull/30

    [WAGON-458] FTPSClient for Wagon

    I did deployed artifacts to some FTPS server with `endpointChecking=false`.
    This pull request still needs some testing against secure FTP server.
    
    Inspired by pull requests:
    
    * https://github.com/apache/maven-wagon/pull/24
    * https://github.com/apache/maven-wagon/pull/22
    
    After changes the configuration could look as follows:
    
    **pom.xml**
    
    ```
    <project>
        ...
        <distributionManagement>
            ...
            <site>
                <id>ftp.server.id</id>
                <url>ftps://secure.example.com</url>
            </site>
        </distributionManagement>
        ...
    </project>
    ```
    
    **settings.xml**
    
    ```
    <settings>
        ...
        <servers>
            ...
            <server>
                <id>ftp.server.id</id>
                <username>username</username>
                <password>password</password>
                <configuration>
                    <endpointChecking>false</endpointChecking>
                </configuration>
            </server>
        </servers>
    <settings>
    ```


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/wiiitek/maven-wagon ftps

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/maven-wagon/pull/30.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #30
    
----
commit 3406103faaf62c080f4d5a985886e0d6a8233250
Author: Wiiitek <ku...@gmail.com>
Date:   2016-12-02T01:45:38Z

    [WAGON-458] FTPSClient for Wagon

----


> 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
>              Labels: security
>
> 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)