-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
33 lines (26 loc) · 1.17 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
plugins {
kotlin("jvm")
}
group = rootProject.group
version = rootProject.version
dependencies {
val logbackVersion: String by project
val logbackAppendersVersion: String by project
val logbackEncoderVersion: String by project
val fluentLoggerVersion: String by project
val coroutinesVersion: String by project
val janinoVersion: String by project
val datetimeVersion: String by project
implementation(kotlin("stdlib-jdk8"))
implementation(project(":ok-marketplace-lib-logging-common"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:$datetimeVersion")
// logback
implementation("net.logstash.logback:logstash-logback-encoder:$logbackEncoderVersion")
// implementation("com.github.danielwegener:logback-kafka-appender:$logbackKafkaVersion")
api("com.sndyuk:logback-more-appenders:$logbackAppendersVersion")
api("org.fluentd:fluent-logger:$fluentLoggerVersion")
// implementation("org.codehaus.janino:janino:$janinoVersion")
api("ch.qos.logback:logback-classic:$logbackVersion")
testImplementation(kotlin("test-junit"))
}