-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
44 lines (35 loc) · 851 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
39
40
41
42
43
44
buildscript {
repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'}
}
}
plugins {
id "org.jetbrains.intellij" version "0.1.10"
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
intellij {
// IC-2016.1 IC-14.1.4 IC-2016.3 IU-2016.1
version 'IU-2016.1' //IntelliJ IDEA dependency
plugins 'coverage' //Bundled plugin dependencies
pluginName 'stackoverflow'
updateSinceUntilBuild false
// 需要来填写publish这块 类似
// publish {
// username 'AmailP'
// pluginId '7415'
// }
}
dependencies{
testCompile "org.assertj:assertj-core:2.2.0"
}
group 'com.bruce.intellijpluin'
version '1.1'