mirror of
https://github.com/Noratrieb/TriangleCalculator.git
synced 2026-01-14 16:45:02 +01:00
initial commit
This commit is contained in:
parent
5e115d7fbe
commit
defbacb8c7
21 changed files with 194 additions and 0 deletions
29
build.gradle.kts
Normal file
29
build.gradle.kts
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.4.20"
|
||||
application
|
||||
}
|
||||
|
||||
group = "me.nilsh"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation(kotlin("test-junit"))
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnit()
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile>() {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
|
||||
application {
|
||||
mainClassName = "MainKt"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue