25 lines
559 B
Kotlin
25 lines
559 B
Kotlin
plugins {
|
|
kotlin("jvm") version "1.4.0"
|
|
|
|
application
|
|
}
|
|
|
|
repositories {
|
|
// Use jcenter for resolving dependencies.
|
|
// You can declare any Maven/Ivy/file repository here.
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
// Align versions of all Kotlin components
|
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
|
|
|
// Use the Kotlin JDK 8 standard library.
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
}
|
|
|
|
application {
|
|
// Define the main class for the application.
|
|
mainClassName = "vimspector.test.ApplicationKt"
|
|
}
|
|
|