我正在尝试使用Groovy-vfs库在gradle脚本中使用http下载文件但是收到错误。这是gradle脚本:
plugins {
id "org.ysb33r.vfs" version "1.0-beta6"
}
import org.ysb33r.groovy.dsl.vfs.VFS
apply plugin: 'com.android.application'
preBuild.dependsOn "copyDatabaseFile"
task copyDatabaeFile {
def vfs = new VFS()
vfs {
cp "http://download.thinkbroadband.com/10MB.zip", "file:///Users/Me/"
}
}
错误位于cp行,并说:
9:45:19 AM Gradle sync failed: Cause: org/apache/commons/httpclient/util/URIUtil
Consult IDE log for more details (Help | Show Log)
源网址/文件有效且存在。
我对groovy或vfs一无所知,而且我一直在尝试谷歌的教程或参考材料使用vfs与groovy但毫无结果。 知道问题是什么吗?
答案 0 :(得分:0)
执行构建脚本时似乎缺少org.apache.commons.httpclient.util.URIUtil
类。要使用此插件复制使用http / https,您需要将commons-httpclient
添加到您的依赖项 - 就像来自docs的这个片段一样:
buildscript {
(...)
dependencies {
classpath 'commons-httpclient:commons-httpclient:3.1' // If you want http/https
}
}
您可以在此处找到完整的文档:http://ysb33r.github.io/groovy-vfs/1.0-beta5/docs/product-documentation.html#_gradle_plugin