7 Star 117 Fork 29

Silently9527 / ToolsetIdeaPlugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Silently9527 提交于 2021-03-07 22:38 . DEV-DRIVEN version
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'cn.silently9527'
version '1.0.3'
sourceCompatibility = 1.8
repositories {
maven {
url 'https://maven.aliyun.com/nexus/content/groups/public'
}
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'cn.hutool', name: 'hutool-http', version: '5.5.7'
compile group: 'com.google.zxing', name: 'core', version: '3.1.0'
compile group: 'com.google.zxing', name: 'javase', version: '3.1.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// 插件名称
pluginName 'toolkit'
// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
// 开发环境运行时使用的版本
version '183.4588.48'
type 'IU'
// 各种版本去这里找
// https://www.jetbrains.com/intellij-repository/releases
//Disables updating since-build attribute in plugin.xml
updateSinceUntilBuild false
downloadSources = true
}
patchPluginXml {
changeNotes ""
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
Java
1
https://gitee.com/silently9527/ToolsetIdeaPlugin.git
git@gitee.com:silently9527/ToolsetIdeaPlugin.git
silently9527
ToolsetIdeaPlugin
ToolsetIdeaPlugin
master

搜索帮助