-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
66 lines (56 loc) · 1.42 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
buildscript {
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
}
jcenter()
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.5.0-SNAPSHOT"
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.21'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id "org.jlleitschuh.gradle.ktlint" version "9.2.1"
}
repositories {
jcenter()
mavenCentral()
}
apply plugin: 'org.jetbrains.intellij'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'org.yaml', name: 'snakeyaml', version: '1.8'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
group 'com.quantumblack'
version '1.0-SNAPSHOT'
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
type 'PY'
version '2020.1.1'
alternativeIdePath "/Applications/PyCharm.app"
plugins 'python', 'yaml'
updateSinceUntilBuild false
}
buildSearchableOptions {
enabled = false
apply plugin: 'idea'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}