Grails Url shortener plugin not getting installed

前端 未结 1 1299
太阳男子
太阳男子 2021-01-15 16:21

I am trying to add a new plugin mentioned here in my app but it is not been resolved and giving me a error i.e.

:: problems summary ::
:::: WARNINGS
                


        
相关标签:
1条回答
  • 2021-01-15 17:10

    The default grails repo provided in 2.2 or smaller does not work now. We fixed this issue by adding the following line to the grails.project.dependency.resolution closure in the BuildConfig.groovy file:

    grails.project.dependency.resolution = {
    
    repositories {
    
          ********
    
        mavenRepo "http://repo.grails.org/grails/repo/"
    
          ********
    }
    }
    

    *duplicate answer of Scott's answer

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