-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
44 lines (33 loc) · 1.43 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
plugins {
kotlin("jvm") version "2.0.0"
application
}
group = "org.inego"
version = "1.0-SNAPSHOT"
val kotlinxCoroutinesVersion = "1.8.1"
val stanfordNlpVersion = "4.5.5"
val slf4jVersion = "2.0.16"
repositories {
mavenCentral()
maven("https://csspeechstorage.blob.core.windows.net/maven/")
}
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinxCoroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:$kotlinxCoroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesVersion")
implementation("com.googlecode.soundlibs:mp3spi:1.9.5.4")
implementation("com.microsoft.cognitiveservices.speech:client-sdk:1.38.0@jar")
implementation("org.apache.commons:commons-csv:1.11.0")
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
implementation("edu.stanford.nlp:stanford-corenlp:$stanfordNlpVersion")
implementation("edu.stanford.nlp:stanford-corenlp:$stanfordNlpVersion:models")
implementation("edu.stanford.nlp:stanford-corenlp:$stanfordNlpVersion:models-english")
implementation("edu.stanford.nlp:stanford-corenlp:$stanfordNlpVersion:models-english-kbp")
// SLF4J dependencies
implementation("org.slf4j:slf4j-api:$slf4jVersion")
implementation("org.slf4j:slf4j-simple:$slf4jVersion")
implementation(kotlin("stdlib"))
}
application {
mainClass.set("MainWindowKt")
}