12 Star 239 Fork 60

Yuonsa / RestfulTool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Yuonsa 提交于 2021-12-10 21:37 . 1.4.5 - Release[1.4.4:unchange]
plugins {
// Java support
id "java"
// Kotlin support
id "org.jetbrains.kotlin.jvm" version "1.4.32"
id 'org.jetbrains.intellij' version '0.7.2'
}
sourceCompatibility = JavaVersion.VERSION_1_10
targetCompatibility = JavaVersion.VERSION_1_10
repositories {
// mavenCentral()
maven {
url 'https://maven.aliyun.com/repository/public/'
}
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
//noinspection SpellCheckingInspection
implementation('cn.hutool:hutool-all:5.7.16')
implementation('org.dom4j:dom4j:2.1.3')
}
intellij {
updateSinceUntilBuild false
type 'IC'
// version '2020.2'
version 'LATEST-EAP-SNAPSHOT'
// version '2021.2'
pluginName 'RestfulTool'
plugins = ['java', 'properties', 'yaml', 'Kotlin']
}
publishPlugin {
// 发布插件,token在`https://plugins.jetbrains.com/author/me/tokens`申请
token System.getenv("IdeaToken")
// channels 'beta'
channels 'stable'
}
group 'cn.cloud.auto.restful.tool'
version '1.4.5'
patchPluginXml {
changeNotes """
<ul>
<li>release</li>
</ul>
"""
}
//编译JAVA文件时采用UTF-8
//noinspection GroovyAssignabilityCheck
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
Java
1
https://gitee.com/zys981029/RestfulTool.git
git@gitee.com:zys981029/RestfulTool.git
zys981029
RestfulTool
RestfulTool
dev

搜索帮助