grails-2.3.7 plugins/repository not found

前端 未结 1 1400
孤独总比滥情好
孤独总比滥情好 2020-12-17 01:30

Suddenly my Grails application having error by causing of some plugins are not found. I think the repository has been removed or move somewhere.

Code on my BuildConf

相关标签:
1条回答
  • 2020-12-17 02:12

    There is a temporary problem with the central repository in some versions of Grails. You can work around this in one of two ways:

    1) Use Aether as your dependency resolver, in BuildConfig (recommended):

    grails.project.dependency.resolver = "maven"
    

    2) If you must use Ivy (not recommended) then add the following repo to your repositories in BuildConfig:

    mavenRepo "http://repo.grails.org/grails/plugins/"
    
    0 讨论(0)
提交回复
热议问题