我正在开发插件并在发布之前在本地工作。我希望在工作完成之前避免发布。
我已阅读最新的Grails Plugins条目,但它没有解决我的问题,也没有解决这些问题。
我的目录结构是这样的(与基于this SO link的文档略有不同):
PROJECT_DIR
- settings.gradle
- myapp
- build.gradle
- settings.gradle
- myplugin
- build.gradle
在myApp build.gradle中:
grails {
plugins {
compile project(':../myPlugin')
}
}
在myApp settings.gradle中(来自上面的链接):
include '../myPlugin'
project(':../myPlugin').projectDir = new File('../myPlugin')
以下是我在构建失败时遇到的错误:
| Resolving Dependencies. Please wait...
...
:../proper-remote:compileWebappGroovyPages UP-TO-DATE
:../proper-remote:compileGroovyPages
:../proper-remote:jar FAILED
...
* What went wrong:
Execution failed for task ':../myPlugin:jar'.
> Could not create ZIP '/Users/me/projects/myPlugin/build/libs/../myPlugin.jar'.
...
Total time: 9.733 secs
| Error Gradle build terminated with error: /Users/me/projects/myPlugin/build/libs/../myPlugin.jar' (No such file or directory)
我的路径不正确吗?我需要创建jar吗?如果是这样,我该怎么办?我试过grails package-plugin
无济于事。
谢谢!
答案 0 :(得分:0)
https://objectcomputing.com/products/grails/multi-project-builds/
通常,您不会像相关文件夹
那样引用依赖项 compile project(':myPlugin')
include 'myPlugin', 'myApp'
此外,您需要将每个app / plugin的settings.gradle中的任何信息移动到父文件夹中的'main',并注释掉/删除每个app / plugin的setting.gradle文件。