messages/generator/build.gradle

25 lines
594 B
Groovy
Raw Normal View History

2021-09-25 15:54:48 +02:00
plugins {
id 'java'
2021-09-25 16:05:24 +02:00
id 'application'
2021-09-25 15:54:48 +02:00
id 'org.jetbrains.kotlin.jvm'
id 'org.jetbrains.kotlin.plugin.serialization'
}
2021-09-25 16:05:24 +02:00
mainClassName = 'MainKt'
2021-09-25 15:54:48 +02:00
dependencies {
implementation project(":pojos")
2021-12-17 20:59:47 +01:00
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version"
2023-08-23 20:02:57 +02:00
implementation 'org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1'
2021-10-03 14:06:12 +02:00
2023-08-23 20:02:57 +02:00
testImplementation platform('org.junit:junit-bom:5.10.0')
2021-10-03 14:06:12 +02:00
testImplementation "org.junit.jupiter:junit-jupiter"
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
2021-09-25 15:54:48 +02:00
}