Grails 邮件插件未安装 - 尝试在配置中修复,但仍然不起作用
我需要安装 grails 的邮件插件。控制台显示以下错误:
Failed to install plugin [mail-1.0-SNAPSHOT]. Plugin has missing JAR dependencies.
我尝试根据我在 google 上搜索到的此问题的指南修复 buildconfig.groovy 中的一些内容,但它一直显示上面的错误消息。 我插入 buildconfig.groovy 的东西
dependencies {
compile "javax.mail:mail:1.4.3"
runtime "org.springframework:org.springframework.test:3.0.3.RELEASE"
runtime( ':mail:1.0-SNAPSHOT' ) {
excludes "spring-test"}
}
插件没有安装(我尝试从“运行目标”控制台安装它。有人可以帮忙吗? 多谢, 丹尼尔
I need to install the mail plugin for grails. The console shows the following error:
Failed to install plugin [mail-1.0-SNAPSHOT]. Plugin has missing JAR dependencies.
I tryed to fix some things in the buildconfig.groovy according to guides to this problem I googled, but it keeps showing this error message above.
Things I inserted into the buildconfig.groovy
dependencies {
compile "javax.mail:mail:1.4.3"
runtime "org.springframework:org.springframework.test:3.0.3.RELEASE"
runtime( ':mail:1.0-SNAPSHOT' ) {
excludes "spring-test"}
}
the plugin doesnt install (I tried to install it from the "run target" console. Can somebody help pleas?
thanks a lot,
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能尝试安装0.9版本吗?我知道这对我们有用。
Can you trying installing version 0.9 ? I know that works for us.
只是突发奇想:mavenCentral() 在存储库部分中是否未注释?
Just a shoot from the hip: is mavenCentral() uncommented in the repositories section?