version: gradle 7.1.1
build.gradle
plugins {
id 'java'
}
group 'edu.abc.questions'
version '1.0-SNAPSHOT'
// 解决 windows 中文乱码问题
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
// 指定使用仓库
repositories {
// 先寻找本地仓库 jar 包依赖
mavenLocal()
// 中央仓库, 默认下载到 GRADLE_UAER_HOME
mavenCentral()
}
dependencies {
// jar 包作用域 test
testImplementation group: 'junit', name: 'junit', version: '4.12'
}