-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
53 lines (43 loc) · 897 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
53
buildscript {
ext {
kotlin_version = '1.3.31'
}
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.8"
}
repositories {
mavenCentral()
}
dependencies {
compile("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
}
group 'com.github.inikolaev'
version '0.0.3'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'kotlin'
intellij {
plugins 'coverage'
pluginName 'Maven POM Editor Plugin for IntelliJ'
type 'IC'
version '2017.3'
}
patchPluginXml {
version '0.0.3'
sinceBuild '173.0'
untilBuild ''
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}