1 Star 0 Fork 16

解宇/doc-view

forked from 刘志航/doc-view 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1020 Bytes
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'org.jetbrains.intellij' version '1.1.4'
id 'java'
}
group 'com.liuzhihang'
version '1.2.0'
JavaVersion.VERSION_11
repositories {
mavenLocal()
maven { url "https://maven.aliyun.com/repository/public" }
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.20'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.20'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2021.2'
plugins = ['com.intellij.java', 'markdown']
pluginName = 'Doc View'
updateSinceUntilBuild = false
sameSinceUntilBuild = false
}
patchPluginXml {
pluginDescription = file(descriptionFile).text
changeNotes = file(changesFile).text
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
test {
useJUnitPlatform()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/scrap_heap/doc-view.git
[email protected]:scrap_heap/doc-view.git
scrap_heap
doc-view
doc-view
master

搜索帮助