-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
38 lines (34 loc) · 895 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
plugins {
id 'org.jetbrains.intellij' version '0.3.5'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
}
group 'BigBurritoInc'
version '0.4'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'com.palominolabs.http:url-builder:1.1.1'
compile "com.fasterxml.jackson.core:jackson-databind:2.6.5"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.6.5"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
intellij {
version '2018.3'
plugins 'git4idea'
pluginName 'myBitbucket'
alternativeIdePath 'C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2018.2.6'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
v.0.4 Fixed parsing error when user email is empty
"""
}