无法在 Grails 3.1.1 中安装 HTML5 拖放多文件上传插件

Unable to install HTML5 drag and drop multi-file upload plugin in Grails 3.1.1

有没有人在 Grails 3 应用程序中成功安装 HTML5 drag and drop multi-file upload plugin

我已经映射了

compile "org.grails.plugins:uploadr:1.2.11"

在 build.grade 文件中,但随后也得到这个

| Error Could not resolve all dependencies for configuration ':testRuntime'. Type 'gradle dependencies' for more information

谁能帮我把我弄出来。 任何帮助将不胜感激。

仅适用于 grails 2 :/ 查看问题 : https://github.com/dustindclark/grails-uploadr/issues/2

您需要 Grails 3 版本。请参阅此处的文档:http://grails.org/plugins.html#plugin/grails3-uploadr 并尝试

dependencies {
  compile 'com.nayidisha.grails.uploadr:grails3-uploadr:3.0'
}

而不是上面的 Grails 2.x 依赖项。