加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 581 Bytes
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'java'
id("org.jetbrains.intellij") version("1.13.1")
}
group 'org.example'
version '1.3.5'
tasks.withType(JavaCompile).configureEach { options.encoding = "UTF-8" }
repositories {
mavenLocal()
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
intellij {
version = '2022.3.2'
plugins = ['java']
intellij.updateSinceUntilBuild = false
}
patchPluginXml {}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化