-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
28 lines (24 loc) · 941 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
plugins {
java
kotlin("jvm") version "1.6.0"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
implementation("org.apache.logging.log4j:log4j-core:2.17.1")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.17.1")
implementation("org.slf4j:slf4j-simple:2.0.0-alpha6")
implementation("org.mongodb:mongodb-driver-reactivestreams:4.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.0-native-mt")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.6.0-native-mt")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}