-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.gradle.kts
35 lines (30 loc) · 884 Bytes
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
val kotlinVersion = "1.6.20"
id("org.jetbrains.kotlin.jvm") version kotlinVersion
id("io.spring.dependency-management") version "1.0.11.RELEASE"
}
repositories {
mavenCentral()
maven {
setUrl("https://repo.spring.io/milestone")
}
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencyManagement {
imports {
mavenBom("io.projectreactor:reactor-bom:2020.0.18")
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("io.projectreactor:reactor-core")
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
implementation("io.reactivex.rxjava2:rxjava:2.2.21")
testImplementation("junit:junit:4.13.1")
testImplementation("io.projectreactor:reactor-test")
}