-
Notifications
You must be signed in to change notification settings - Fork 147
/
build.gradle
66 lines (49 loc) · 1.4 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//buildscript {
// repositories {
// mavenCentral()
//// maven { url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'}
// }
//}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.1.2'
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// 需要来填写publish这块 类似
// publish {
// username 'AmailP'
// pluginId '7415'
// }
intellij {
// IC-2016.1
// version 'IU-2018.3' //IntelliJ IDEA dependency
pluginName.set('GenerateAllSetter')
version.set('2018.3')
type.set('IC')
downloadSources.set(true)
updateSinceUntilBuild.set(false)
// plugins.set('coverage') //Bundled plugin dependencies
// sandboxDirectory.set('sandbox')
//
plugins = ['Kotlin', 'org.nik.presentation-assistant:1.0.1', 'Lombook Plugin:0.31-2018.3', 'Groovy']
//
// sandboxDirectory.set('sandbox')
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
// https://mvnrepository.com/artifact/org.assertj/assertj-core
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.12.2'
compile group: 'uk.com.robust-it', name: 'cloning', version: '1.9.3'
}
group 'com.bruce.intellijplugin'
version '2.8.5'