当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
PasseRR 提交于 2019-11-27 15:45 . 版本升级
group 'com.github.passerr'
version '1.1.0'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.3.9"
}
}
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'org.jetbrains.intellij'
repositories {
mavenCentral()
}
intellij {
// 不修改plugin.xml的idea-version
updateSinceUntilBuild false
//IntelliJ IDEA 2016.3 dependency; for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
version '162.1628.40'
// plugins 'coverage'
// pluginName 'Gome Time'
}
tasks.withType(GroovyCompile) {
groovyOptions.encoding = "UTF-8"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
dependencies {
compileOnly group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.4.6'
compile group: 'com.fifesoft', name: 'rsyntaxtextarea', version: '2.6.1'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化