blob: 8bb77645a3c9752dc5c1b470f379b4ef018b8c83 (
plain)
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
|
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.kotlin.plugin.spring")
id("org.springframework.boot") version "2.1.3.RELEASE"
id("org.jlleitschuh.gradle.ktlint") version "7.1.0"
}
apply(plugin = "io.spring.dependency-management")
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
dependencies {
compile(project(":game-model"))
compile(project(":game-engine"))
compile(kotlin("stdlib-jdk8"))
compile(kotlin("reflect")) // required by Spring 5
compile("org.springframework.boot:spring-boot-starter-websocket")
compile("org.springframework.boot:spring-boot-starter-security")
// required by spring security when using websockets
compile("org.springframework.security:spring-security-messaging")
compile("com.fasterxml.jackson.module:jackson-module-kotlin")
compile("ch.qos.logback:logback-classic:1.1.8")
compile("org.hildan.livedoc:livedoc-springboot:4.3.2")
compile("org.hildan.livedoc:livedoc-ui-webjar:4.3.2")
annotationProcessor("org.hildan.livedoc:livedoc-javadoc-processor:4.3.2")
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.hildan.jackstomp:jackstomp:2.0.0")
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin")
}
// packages the frontend app within the jar
tasks.bootJar {
from("../frontend/build") {
into("static")
}
}
// make sure we build the frontend before creating the jar
tasks.bootJar.get().dependsOn(":frontend:assemble")
|