-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
52 lines (43 loc) · 1020 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
45
46
47
48
49
50
51
52
plugins {
id 'org.jetbrains.intellij' version '0.4.8'
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
}
group 'cn.renyuzhuo.plugin.easygradle'
version '1.0.4'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
publishPlugin {
token intellijPublishToken
}
intellij {
version '2019.1.3'
alternativeIdePath '/Users/renyuzhuo/Documents/JetBrains/apps/AndroidStudio/ch-0/201.6858069/Android Studio.app'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
patchPluginXml {
changeNotes """
V1.0.4<br>
Update Supported Android Studio Version<br>
Have Fun!<br><br>
V1.0.2<br>
Update Logo<br>
Have Fun!<br><br>
V1.0.1<br>
Add Check Gradle Version To Update<br>
Have Fun!<br><br>
V1.0.0<br>
Release The First Version: EasyGradle<br>
Have Fun!
"""
sinceBuild "173"
untilBuild "203"
}