forked from Miha-x64/Mikes_IDEA_extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (44 loc) · 1.21 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
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.9"
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.9"
id 'org.jetbrains.kotlin.jvm' version '1.3.40-eap-67'
}
group 'net.aquadc.mike'
version '0.8'
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2018.3'
plugins 'Kotlin', 'android'
updateSinceUntilBuild false
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
patchPluginXml {
changeNotes """
added minSdk check for layout=?attr
added inspection for <bitmap tint
fixed noinline function inspection to ignore return type
added IntroduceConstantFix to UncachedAlloc inspection
"""
}