-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
34 lines (27 loc) · 905 Bytes
/
build.gradle
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '2.1.10'
id 'org.jetbrains.kotlin.kapt' version '2.1.10'
id 'application'
id 'idea'
}
repositories {
mavenCentral()
}
def arrowVersion = "2.0.1"
def junitVersion = "5.11.4"
dependencies {
implementation platform('org.jetbrains.kotlin:kotlin-bom')
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation "io.arrow-kt:arrow-core:$arrowVersion"
implementation "io.arrow-kt:arrow-fx-coroutines:$arrowVersion"
testImplementation "org.assertj:assertj-core:3.27.3"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}
test {
useJUnitPlatform()
}
application {
mainClass = 'RailwayOrientedProgramming.AppKt'
}