一、安装配置
gradle官方网站https://gradle.org/,下载下来是一个压缩包,解压到合适的目录即可,然后配置环境变量(GRADLE_HOME,Path),略去。
二、IDEA配置
New Project时选择Gradle作为构建工具。
值得关注的配置如下。
创建的项目的结构如图所示
最重要的配置文件就是build.gradle,他的功能类似于maven中的pom.xml.进行依赖的管理项目的构建等。
三、配置示例
plugins {
id 'java'
}
group 'com.winner'
version '1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
//testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile(
"junit:junit:4.12"
)
compile (
"io.netty:netty-all:4.1.10.Final",
"org.springframework.boot:spring-boot-starter-web:2.1.0.RELEASE"
)
}