-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (40 loc) · 1.4 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
buildscript {
ext.kotlin_version = '1.3.20'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
group 'uk.co.endofhome'
version '1.0-SNAPSHOT'
apply plugin: 'kotlin'
apply plugin: 'application'
repositories {
mavenCentral()
}
task stage(dependsOn: ['installDist'])
dependencies {
def jackson_version = '2.9.2'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "com.google.api-client:google-api-client:1.23.0"
compile "com.google.oauth-client:google-oauth-client-jetty:1.23.0"
compile "com.google.apis:google-api-services-gmail:v1-rev83-1.23.0"
compile group: "javax.mail", name: "mail", version: "1.5.0-b01"
compile "com.dropbox.core:dropbox-core-sdk:3.0.8"
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
compile "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
compile group: 'com.github.jknack', name: 'handlebars', version: '4.0.6'
testCompile 'junit:junit:4.12'
testCompile 'com.natpryce:hamkrest:1.4.2.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
mainClassName = "MainKt"