0
点赞
收藏
分享

微信扫一扫

SpringBoot 3.0 即将到来 Gradle 将成主流 gradle安装与配置

RIOChing 2022-05-05 阅读 78

下载gradle

官网:Gradle

环境变量

GRADLE_HOME:gradle路径

GRADLE_USE_HOME:gradle本地仓库目录

Path:%GRADLE_HOME%\bin

测试

打开Windows powershell输入gradle -v出现以下内容即为成功;

C:\Users\hy>gradle -v

Welcome to Gradle 7.4.2!

Here are the highlights of this release:
 - Aggregated test and JaCoCo reports
 - Marking additional test source directories as tests in IntelliJ
 - Support for Adoptium JDKs in Java toolchains

For more details see https://docs.gradle.org/7.4.2/release-notes.html


------------------------------------------------------------
Gradle 7.4.2
------------------------------------------------------------

Build time:   2022-03-31 15:25:29 UTC
Revision:     540473b8118064efcc264694cbcaa4b677f61041

Kotlin:       1.5.31
Groovy:       3.0.9
Ant:          Apache Ant(TM) version 1.10.11 compiled on July 10 2021
JVM:          1.8.0_212 (Oracle Corporation 25.212-b10)
OS:           Windows 10 10.0 amd64

gradle阿里云配置

  • 在gradle-6.8.3\init.d目录下创建init.gradle文件
allprojects{
    repositories {
        def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
        all { ArtifactRepository repo ->
            if(repo instanceof MavenArtifactRepository){
                def url = repo.url.toString()
                if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
                    remove repo
                }
            }
        }
        maven {
            url REPOSITORY_URL
        }
    }
}
举报

相关推荐

0 条评论