grails1.3.7--Failed to install plugin [mail-1.0-SNAPSHOT]. Plugin has missing JAR dependencies--解决

bug: 地址:http://jira.grails.org/browse/GPMAIL-14
解决方案: https://github.com/gpc/grails-mail/commit/585bb681c030c1be93ca56ad984dc994bb101107

即在BuildConfig.groovy中更改如下:
  
  dependencies  {
        
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

        
// runtime 'mysql:mysql-connector-java:5.1.13'
        compile "javax.mail:mail:1.4.3"
        runtime 
"org.springframework:org.springframework.test:3.0.3.RELEASE"
    }
再run-app下载,再装插件。
实在不行,就手动装。


天苍苍,野茫茫,风吹草底见牛羊

你可能感兴趣的:(grails1.3.7--Failed to install plugin [mail-1.0-SNAPSHOT]. Plugin has missing JAR dependencies--解决)