-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
78 lines (69 loc) · 1.37 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
76
77
78
buildscript {
ext.kotlin_version = '1.3.30'
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version '0.4.8'
}
def bugKtDoc = []
def local_path = ""
switch (alternative_ide) {
case 'IJ':
break
case 'CL':
local_path = clion_path
bugKtDoc += clion_kn
break
case 'AC':
local_path = appcode_path
bugKtDoc += appcode_kn
break
}
allprojects {
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.intellij'
}
intellij {
type idea_type
updateSinceUntilBuild false
version idea_version
if (local_path != "") {
localPath local_path
alternativeIdePath local_path
bugKtDoc += 'org.intellij.plugins.markdown:181.2668'
} else {
bugKtDoc += 'kotlin'
}
plugins bugKtDoc.toArray()
}
patchPluginXml {
pluginDescription(file("description.html").text)
changeNotes(file("changeNotes.html").text)
}
group groupId
version plugin_version
repositories {
mavenCentral()
}
dependencies {
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
sourceSets {
main.java {
srcDirs += ['src/main/java', 'src/main/kotlin']
}
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}