我是 gradle 的新手,但我正在进行的项目的构建已经独立工作了几个月。今天我尝试“分级”它,我得到一个相当神秘的错误......
bobk-mbp:DM_Server bobk$ gradle
:clean
:readme
:compileJava
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all dependencies for configuration ':compile'.
> Artifact 'org.apache.james:apache-mime4j:0.6@jar' not found.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 7.114 secs
问题是我在我的依赖项部分对 org.apache.james:apache-mime4j 没有任何明确的依赖关系,所以它一定是来自其他东西。我如何确定我的哪些依赖项实际上需要这个,然后,我如何克服或解决这个缺失的工件?