3 Star 31 Fork 18

刘志航 / doc-view

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'org.jetbrains.intellij' version '1.5.2'
id 'java'
}
group 'com.liuzhihang'
version '1.3.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 = '2022.1'
// type = "IU"
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()
}
Java
1
https://gitee.com/liuzhihang/doc-view.git
git@gitee.com:liuzhihang/doc-view.git
liuzhihang
doc-view
doc-view
master

搜索帮助