Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 2.65 KB

README.md

File metadata and controls

61 lines (46 loc) · 2.65 KB

Cyberduck

GitHub license Build Status Codacy Badge Twitter

Libre FTP, SFTP, WebDAV, S3, Azure and OpenStack Swift browser for Mac and Windows. Command line interface (CLI) for Linux, OS X and Windows.

Prerequisites

Building

Run mvn verify -DskipTests to build without running any tests.

Running Tests

After packaging, run mvn test -DskipITs to run unit tests but skip integration tests.

Releases

Releases are tagged in GIT/SVN such as release-2-6. Checkout using svn co https://svn.cyberduck.io/tags/release-2-6.

Maven Artifacts

Maven artifacts are available in a repository hosted on S3. Use the following Maven configuration to reference artifacts in your project:

     <repositories>
         <repository>
             <id>maven.cyberduck.io-release</id>
             <url>http://repo.maven.cyberduck.io.s3.amazonaws.com/releases/</url>
             <layout>default</layout>
             <releases>
                 <enabled>true</enabled>
             </releases>
             <snapshots>
                 <enabled>false</enabled>
             </snapshots>
         </repository>
     </repositories>

You will need to add the AWS Maven Wagon to your build:

     <build>
         <extensions>
             <extension>
                 <groupId>org.springframework.build</groupId>
                 <artifactId>aws-maven</artifactId>
                 <version>5.0.0.RELEASE</version>
             </extension>
         </extensions>
     </build>