Uploaded image for project: 'Maven Wagon'
  1. Maven Wagon
  2. WAGON-458

Implementation for FTPS

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.10
    • 2.12
    • wagon-ftp

    Description

      Descrption

      There was a pull request created by @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

      The sample configuration for FTPS could look like this:

      pom.xml:

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

      settings.xml:

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

      Attachments

        Activity

          People

            dantran Dan Tran
            wiiitek Witek
            Votes:
            1 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: