我的gradle构建脚本有问题:
apply plugin: 'java'
/*
* Sources:
* http://stackoverflow.com/q/17201815/4490015
* https://github.com/Vazkii/Botania/blob/master/build.gradle
*/
repositories {
mavenCentral()
}
configurations {
ftpAntTask
}
/*
* Load configuration file.
*/
ext.priv = parseConfig(file('private.properties'))
/*
* Some project properties
*/
version = '0.0.1'
group = 'randers.notenoughvocab'
archivesBaseName = 'NotEnoughVocab'
dependencies {
ftpAntTask('org.apache.ant:ant-commons-net:1.8.4') {
module('commons-net:commons-net:1.4.1') {
dependencies 'oro:oro:2.0.8:jar'
}
}
}
void ftp(Map args, Closure antFileset = {}) {
ant {
taskdef(name: 'ftp',
classname: 'org.apache.tools.ant.taskdefs.optional.net.FTP',
classpath: configurations.ftpAntTask.asPath)
Map ftpArgs = args + [ //some default options
verbose : 'yes',
server : priv.host,
userid : priv.user,
password: priv.pass
]
delegate.ftp(ftpArgs) {
antFileset.delegate = delegate
antFileset()
}
}
}
def parseConfig(File config) {
config.withReader {
def prop = new Properties()
prop.load(it)
return (new ConfigSlurper().parse(prop))
}
}
/**
* Uploads the javadoc to the server specified in private.properties
*/
task('uploadJavadoc', dependsOn: 'javadoc') << {
ftp(action: 'send') {
fileset(dir: 'build/docs/javadoc')
}
}
jar {
manifest {
attributes 'Main-Class': 'randers.notenoughvocab.main.NotEnoughVocab'
}
}
task('prepareBuild') {
ant.replace(file: 'src/main/java/randers/notenoughvocab/main/Reference.java', token: '@VERSION@', value: version)
}
build.dependsOn(tasks.prepareBuild)
我收到以下错误消息:
无法放入文件:425无法打开与端口55080的数据连接:连接超时
显然它有效for others。
我在private.properties
中指定的服务器可以正常使用像FileZilla这样的FTP客户端,我没有超时。我也尝试过使用本地FTP服务器,但由于传输没有带宽限制,因此传输是即时的
我该怎么做才能防止超时?端口55080
是我应该关注的吗?
我之前也做了一些调试,确保priv.host
,priv.user
和priv.pass
变量包含正确的信息。
答案 0 :(得分:2)
如果从家用计算机启动程序时出现该错误(通常是NAT,并且没有可公共路由的IP),则可以尝试使用FTP被动模式。在Ant task文档中,您只需将passive: 'yes'
添加到ftpArgs
。
FTP是一种非常奇怪的协议:对于下载和上传文件,服务器向客户端打开另一个连接,这通常会导致没有公共IP的家庭用户出现问题。简单的解决方案称为“被动模式”