gradle简要记录

gradle安装:

https://www.cnblogs.com/linkstar/p/7899191.html

若想编译版本 更改build.gradle文件中的version 之后在cmd命令台gradle build编译

对于镜像仓库位置的编辑

repositories {
     //mavenCentral()
     maven{
     url
     "http://maven.aliyun.com/nexus/content/groups/public/"
     }
}
 
其全局变量配置:
 
在操作系统当前用户的 HOME 目录,找到 .gradle 文件夹,在这个文件夹下面创建一个文本文件 init.gradle,完整的文件路径可能如下:C:\Users\<june>\.gradle\init.gradle。
在此文件中加入如下代码片段:
allprojects{
    repositories {
        def ALIYUN_REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public'
        def ALIYUN_JCENTER_URL = 'http://maven.aliyun.com/nexus/content/repositories/jcenter'
        all { ArtifactRepository repo ->
            if(repo instanceof MavenArtifactRepository){
                def url = repo.url.toString()
                if (url.startsWith('https://repo1.maven.org/maven2')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
                    remove repo
                }
                if (url.startsWith('https://jcenter.bintray.com/')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
                    remove repo
                }
            }
        }
        maven {
            url ALIYUN_REPOSITORY_URL
            url ALIYUN_JCENTER_URL
        }
    }
}
View Code

 

wrapper的意思: 包装 , 为了解决gradle版本更新过快会引发的问题

关于java jar的启动:  先gradlew build编译再java -jar  build/libs/项目版本

 

https://blog.csdn.net/ZYC88888/article/details/82866290

posted @ 2019-10-29 14:16  灵丶诚  阅读(126)  评论(0编辑  收藏  举报