I am new to gradle and I don\'t know how to upload my /bin folder contents to the FTP server. Tried to find solution in internet, but they didn\'t help to me.
My bui
Use apache commons net library. There's an example of FTPClient
usage.
You also need to configure dependencies for the build script itself. Following code does it:
import org.apache.commons.net.ftp.FTPClient
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'commons-net:commons-net:3.3'
}
}
task upload << {
def ftp = new FTPClient()
//following logic..
}