加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
buildscript {
repositories {
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
}
plugins {
id "org.jetbrains.intellij" version "0.1.10"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
// dependencies {
// compile project(':ThirdPart:checktreetable')
// compile project(':ThirdPart:json')
// }
sourceSets {
main {
java {
srcDir "${project.rootDir.absolutePath}/ThirdParty/json/java/src"
srcDir "${project.rootDir.absolutePath}/ThirdParty/treetable/java/src"
}
}
}
intellij {
version 'IC-2016.2.5'
pluginName 'GsonFormat'
updateSinceUntilBuild false
// publish {
// pluginId '7910'
// username publishUsername
// password publishPassword
// }
// Uncomment to test against Android Studio
// intellij.alternativeIdePath = '/Applications/Android Studio.app'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化