0

编译文件('lib/ssi-jar-with-dependencies.jar')

不工作。它不会破坏脚本,但也不包含依赖项。

4

2 回答 2

0

上面的声明是正确的(假设你把它放在正确的地方)。路径错误,或者构建脚本(或 Jar)存在其他问题。

于 2013-08-21T22:34:35.813 回答
0

您可以添加平面目录存储库

repositories {
    flatDir {
        dirs 'lib'
    }
    flatDir {
        dirs 'lib1', 'lib2'
    } }
于 2013-08-23T10:50:07.480 回答