Error Failed to resolve dependencies grails

后端 未结 1 1836
别跟我提以往
别跟我提以往 2020-12-28 17:08

I get Error Failed to resolve dependencies error when I try to run, clean, or compile. My BuildConfig.groovy file is as follows:

gr         


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

    Sometimes it seems like people are playing Hide and Seek with these plugins. I also have an older (grails 2.2.5) project that didn't work when I checked it out of source control. This hit me because I'm on a new computer that didn't have a local maven or ivy cache.

    I added the following two repos in the repositories section of BuildConfig.groovy

    mavenRepo "http://repo.grails.org/grails/core"
    mavenRepo "http://repo.grails.org/grails/plugins"
    

    and was able to get my project to refresh.

    I found the first link here https://jira.grails.org/browse/GPSEARCHABLE-224 while trying to get the searchable plugin to work.

    I found the second link in Downloading a Grails plugin

    0 讨论(0)
提交回复
热议问题