-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
47 lines (37 loc) · 1.25 KB
/
build.gradle.kts
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
36
37
38
39
40
41
42
43
44
45
46
47
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.5.30"
application
}
group = "edu.utsa.fileflow"
version = "1.0"
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
// https://github.com/Kotlin/kotlinx-cli
implementation("org.jetbrains.kotlinx:kotlinx-cli:0.3.3")
// https://mvnrepository.com/artifact/org.antlr/antlr4-runtime
implementation("org.antlr:antlr4-runtime:4.5")
// https://mvnrepository.com/artifact/log4j/log4j
implementation("log4j:log4j:1.2.14")
// https://github.com/rodneyxr/ffa-framework
implementation("com.github.rodneyxr:ffa-framework:main-SNAPSHOT")
// https://github.com/rodneyxr/ffa-grammar
implementation("com.github.rodneyxr:ffa-grammar:main-SNAPSHOT")
// https://github.com/rodneyxr/brics-automaton
implementation("com.github.rodneyxr:brics-automaton:main-SNAPSHOT")
// https://github.com/rodneyxr/brics-jsa
implementation("com.github.rodneyxr:brics-jsa:main-SNAPSHOT")
testImplementation("org.jetbrains.kotlin:kotlin-test:1.5.21")
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClass.set("MainKt")
}