Archived
1
0
This repository has been archived on 2025-10-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AI/build.gradle.kts
VerySweetBread ca4b9e332c Some corrections
2022-11-24 00:22:17 +03:00

25 lines
420 B
Kotlin

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.7.10"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.6.0")
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}