blob: a93010a5685e3987d675c78c952ca582e9ec0fbc (
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
61
62
|
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.1-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 "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "io.javalin:javalin:2.8.0"
compile "org.slf4j:slf4j-simple:1.7.26"
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 "org.thymeleaf:thymeleaf:3.0.9.RELEASE"
compile group: 'com.fizzed', name: 'rocker-compiler', version: '1.2.1'
compile group: 'at.favre.lib', name: 'bcrypt', version: '0.7.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
|