50 Star 612 Fork 63

starcwang / easy_javadoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1022 Bytes
一键复制 编辑 原始数据 按行查看 历史
starcwang 提交于 2024-03-11 00:13 . v3.7.1
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.14'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
apply plugin: "java"
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
group 'com.star.easydoc'
version '3.7.1'
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
plugins = ['Kotlin']
// plugins 'java'
version '2019.1'
pluginName 'Easy Javadoc'
updateSinceUntilBuild false
}
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.21'
}
//配置编码格式
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
task fatJar(type: Jar) {
manifest.from jar.manifest
classifier = 'all'
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
}
Java
1
https://gitee.com/starcwang/easy_javadoc.git
git@gitee.com:starcwang/easy_javadoc.git
starcwang
easy_javadoc
easy_javadoc
master

搜索帮助