-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (50 loc) · 1.38 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
buildscript {
ext.kotlin_version = '1.2.40'
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.3.1"
id "org.jetbrains.kotlin.jvm" version "1.2.40"
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: "kotlin"
intellij {
version '2017.2.5'
pluginName 'BambooPlugin'
intellij.updateSinceUntilBuild false
}
kotlin {
experimental {
coroutines 'enable'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
}
dependencies {
compile "com.google.code.gson:gson:2.6.2"
compile "com.github.jiconfont:jiconfont-font_awesome:4.7.0.0"
compile "com.github.jiconfont:jiconfont-swing:1.0.1"
compile "com.squareup.okhttp3:logging-interceptor:3.10.0"
compile "com.squareup.retrofit2:adapter-rxjava2:2.2.0"
compile "com.squareup.retrofit2:converter-gson:2.2.0"
compile "org.reactivestreams:reactive-streams:1.0.2"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.22.5"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-swing:0.22.5"
}