美文网首页
gradle配置模板

gradle配置模板

作者: rainmanhhh | 来源:发表于2020-10-22 19:20 被阅读0次

    settings.gradle.kts:

    pluginManagement {
      repositories {
        mavenLocal()
        maven("https://maven.aliyun.com/repository/gradle-plugin")
        gradlePluginPortal()
      }
    }
    rootProject.name = "demo"
    

    build.gradle.kts:

    repositories {
      mavenLocal()
      maven("https://maven.aliyun.com/repository/public")
      maven("https://jitpack.io")
      jcenter()
    }
    

    相关文章

      网友评论

          本文标题:gradle配置模板

          本文链接:https://www.haomeiwen.com/subject/ghzumktx.html