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
T

25 lines
420 B
Kotlin
Raw Normal View History

2022-11-23 17:35:58 +03:00
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"))
2022-11-24 00:15:24 +03:00
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.6.0")
2022-11-23 17:35:58 +03:00
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}