35 lines
No EOL
585 B
Text
35 lines
No EOL
585 B
Text
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.5.10"
|
|
id("com.github.johnrengelman.shadow") version "7.0.0"
|
|
application
|
|
}
|
|
|
|
group = "eu.toldi.iptv"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
application {
|
|
mainClass.set("eu.toldi.iptv.MainKt")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://jitpack.io")
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.beust:klaxon:5.5")
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>() {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |