forked from dipengfei/reactive-messaging-kt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
52 lines (33 loc) · 875 Bytes
/
build.gradle.kts
File metadata and controls
52 lines (33 loc) · 875 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.3.4.RELEASE" apply false
id("io.spring.dependency-management") version "1.0.10.RELEASE" apply false
kotlin("jvm") version "1.3.72" apply false
kotlin("plugin.spring") version "1.3.72" apply false
}
allprojects {
group = "me.danielpf"
repositories {
mavenCentral()
}
}
subprojects {
apply {
plugin("kotlin")
}
if (name != "rmkt-core") {
apply {
plugin("org.springframework.boot")
plugin("io.spring.dependency-management")
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "11"
}
}
}