-
Notifications
You must be signed in to change notification settings - Fork 569
/
build.gradle
39 lines (34 loc) · 921 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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'
}