Failed to resolve dependencies during grails plugins installation

前端 未结 3 1369
迷失自我
迷失自我 2021-02-02 18:30

I deleted my .grails folder from my PC and when I opened an application in Intellij IDE, the plugins mentioned in buildConfig.groovy start installing. A few plugins were install

相关标签:
3条回答
  • 2021-02-02 18:37

    Current Maven files are not found from these repositories. I have also faced this issue and resolved by adding in repositories

    grailsRepo "https://grails.org/plugins"

    repositories {
            inherits true
    
            grailsPlugins()
            grailsHome()
            grailsCentral()
            mavenLocal()
            mavenCentral()
            grailsRepo "https://grails.org/plugins" 
        }
    
    0 讨论(0)
  • 2021-02-02 18:49
    repositories {
    
        inherits true
        grailsPlugins()
        grailsHome()
        grailsCentral()
        mavenLocal()
        mavenCentral()
        mavenRepo "http://repo.grails.org/grails/plugins/"
    }
    
    0 讨论(0)
  • 2021-02-02 18:57

    Try to refresh your dependencies:

    1. Run "grails clean"
    2. Run "grails refresh-dependencies"
    0 讨论(0)
提交回复
热议问题