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
VerySweetBread 1a8cae23b2 Init
2022-11-23 18:43:24 +03:00

24 lines
354 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"))
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}