-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (40 loc) · 1.27 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
id 'application'
id 'org.jetbrains.kotlin.plugin.serialization' version "1.5.31"
id 'org.jetbrains.compose' version "1.0.0"
}
group = 'ru.senin.kotlin'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven{
url 'https://maven.pkg.jetbrains.space/public/p/compose/dev'
}
google()
}
dependencies {
implementation(compose.desktop.currentOs)
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.1"
implementation 'org.apache.commons:commons-csv:1.8'
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.2.0")
implementation("io.github.microutils:kotlin-logging-jvm:2.0.11")
runtimeOnly('org.slf4j:slf4j-simple:1.7.32')
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testImplementation "junit:junit:4.13.2"
}
test {
useJUnit()
}
compileKotlin {
kotlinOptions.jvmTarget = '11'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '11'
}
application {
mainClassName = 'MainKt'
}