ftpapi-3.0.0.jar - JAR file containing the classes
ftpapi-3.0.0-javadoc.jar - JAR file containing the API Documentation (aka JavaDocs)
ftpapi-3.0.0-sources.jar - JAR file containing the source code
ftpapi-3.0.0-bin.zip - ZIP file with all the above
Follow the instructions below for using the Secure FTP API for Java in your Maven based project:
Add the jMethods repository to your pom.xml in the repositories section
<repositories> | |
<repository> | |
<id>jMethods</id> | |
<name>jMethods Maven Repository</name> | |
<url>http://www.jMethods.com/mvn-repo</url> | |
</repository> | |
</repositories> |
Add Secure FTP API for Java as your project's dependency in the dependencies section.
<dependencies> | |
<dependency> | |
<groupId>com.myjavaworld</groupId> | |
<artifactId>ftpapi</artifactId> | |
<version>3.0.0</version> | |
</dependency> | |
</dependencies> |