-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (41 loc) · 994 Bytes
/
build.gradle
File metadata and controls
51 lines (41 loc) · 994 Bytes
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
buildscript {
ext.kotlin_version = '1.0.3'
repositories {
mavenCentral()
jcenter()
maven {
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.1.10"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-runtime:$kotlin_version"
compile 'com.github.kittinunf.fuel:fuel:1.3.1'
compile 'com.github.salomonbrys.kotson:kotson:2.3.0'
}
group 'code_view'
version '0.1'
intellij {
version '2016.1.3'
pluginName 'code_view'
updateSinceUntilBuild false
}
sourceSets {
main.java.srcDirs += "src/main"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}