aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 072130c5e35222360076b9c4fb1e68acb0b299c9 (plain) (blame)
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
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin"
    }
}

plugins {
    id 'org.jetbrains.kotlin.jvm' version '1.3.11'
    id 'nu.studer.rocker' version '0.4'
    id 'com.github.johnrengelman.shadow' version '5.0.0'
    id 'java'
}

group "space.anity"
version "0.2-BETA"

apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
jar.enabled = false
mainClassName = 'space.anity.AppKt'

shadowJar {
    baseName = 'kloud'
}

repositories {
    jcenter()
}

rocker {
    main {
        optimize = false
        templateDir = file('src/main/resources/views')
        outputDir = file('src/main/resources/generated-views')
        classDir = file('src/main/resources/compiled-views')
    }
}

dependencies {
    compile "io.javalin:javalin:2.8.0"
    compile "com.fasterxml.jackson.core:jackson-databind:2.9.8"
    compile 'org.jetbrains.exposed:exposed:0.13.2'
    compile "org.xerial:sqlite-jdbc:3.21.0.1"
    compile group: 'com.fizzed', name: 'rocker-compiler', version: '1.2.1'
    compile group: 'at.favre.lib', name: 'bcrypt', version: '0.7.0'
    compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
}

compileKotlin {
    kotlinOptions.jvmTarget = "1.8"
}

compileTestKotlin {
    kotlinOptions.jvmTarget = "1.8"
}