-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (32 loc) · 1009 Bytes
/
build.gradle
File metadata and controls
35 lines (32 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '2.1.0'
// id 'com.google.devtools.ksp' version '2.1.0-1.0.29'
id 'application'
id 'antlr'
//id 'scala'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test'
// implementation 'com.google.code.gson:gson:2.8.9'
implementation 'org.jetbrains.kotlin:kotlin-compiler:1.9.0'
implementation 'org.antlr:antlr4-runtime:4.13.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
// implementation 'io.arrow-kt:arrow-optics:2.0.1'
// implementation 'io.arrow-kt:arrow-fx-coroutines:2.0.1'
// implementation 'io.arrow-kt:arrow-core:2.0.1'
// ksp 'io.arrow-kt:arrow-optics-ksp-plugin:2.0.1'
//implementation "org.jetbrains.kotlin:kotlin-compiler-embeddable"
//implementation 'org.scala-lang:scala3-library_3:3.2.2'
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}