-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
42 lines (32 loc) · 980 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
36
37
38
39
40
41
42
plugins {
id("java")
kotlin("jvm") version "1.7.20"
application
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "explode"
version = "1.1"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
implementation("org.slf4j:slf4j-api:2.0.3")
implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation(fileTree("libs"))
implementation("org.litote.kmongo:kmongo-coroutine:4.7.1")
implementation("com.google.code.gson:gson:2.9.0")
//implementation("org.mongodb:mongodb-driver-sync:4.7.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
application {
mainClass.set("explode.migrate.Main")
}