-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbuild.gradle
75 lines (67 loc) · 1.84 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
67
68
69
70
71
72
73
74
75
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.intellij' version '0.4.9'
}
group 'com.xiaopo.flying'
version '1.1.1'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compileOnly fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar'])
compileOnly fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar'])
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
intellij {
// version '2017.1'
intellij.localPath = project.hasProperty("StudioRunPath") ? StudioRunPath : StudioCompilePath
updateSinceUntilBuild = false
}
patchPluginXml {
changeNotes """
<b>v1.1.0</b><br>
be compatible with Android Studio Arctic Fox<br>
<b>v1.0.10</b><br>
be compatible with Android Studio 4.2<br>
<b>v1.0.9</b><br>
be compatible with Android Studio 4.1<br>
<b>v1.0.8</b><br>
v1 support clipChildren and clipToPadding<br>
<b>v1.0.7</b><br>
use v2 version, speed dump view<br>
<b>v1.0.6</b><br>
be compatible with Android Studio 4.0<br>
<b>v1.0.5</b><br>
Fix<br>
<b>v1.0.4</b><br>
Fix<br>
<b>v1.0.3</b><br>
be compatible with latest idea<br>
<b>v1.0.2</b><br>
be compatible with latest idea<br>
<b>v1.0.1</b><br>
change compatible builds<br>
<b>v1.0.0</b><br>
It is a first version of Layout Master.<br>
if you like it, please give me a star.<br>
And welcome to contribute your code for this project.<br>
"""
}