Resource nexus-maven-repository-index.properties does not exist in IntelliJ

前端 未结 4 2102
天命终不由人
天命终不由人 2021-02-02 10:05

While experimenting with Grails 3 under IntelliJ I found the following warning:

 Unindexed remote maven repositories found. Disable...
 The following repositorie         


        
4条回答
  •  爱一瞬间的悲伤
    2021-02-02 10:24

    You can try using grails/repo and grails/plugins instead of grails/core.

    For example, in build.gradle:

    repositories {
        mavenLocal()
        maven { url 'http://repo.grails.org/grails/repo' }
        maven { url 'http://repo.grails.org/grails/plugins' }
    }
    

    I tested on IntelliJ Community 15 with Grails 3.0.9, JVM Version: 1.8.0_45, Apache Maven 3.3.9 and Gradle 2.3.

提交回复
热议问题