Failed to resolve dependencies during grails plugins installation

前端 未结 3 1371
迷失自我
迷失自我 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" 
        }
    

提交回复
热议问题