-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
43 lines (37 loc) · 1.06 KB
/
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
43
plugins {
kotlin("jvm") version "1.8.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "dev.minjae.votifier.server"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
testImplementation(kotlin("test"))
implementation("com.github.NuVotifier.NuVotifier:nuvotifier-common:fcf6c93404")
implementation("io.netty:netty-all:4.1.90.Final")
implementation("ch.qos.logback:logback-classic:1.4.6")
implementation("org.yaml:snakeyaml:2.0")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2")
implementation("com.fasterxml.jackson.module:jackson-module-blackbird:2.14.2")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.2")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
tasks {
shadowJar {
archiveClassifier.set("")
manifest {
attributes(mapOf("Main-Class" to "dev.minjae.votifier.server.BootstrapKt"))
}
}
}