-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 941 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
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
id 'java'
id "application"
id "com.github.johnrengelman.shadow" version "8.1.1"
}
group = 'rs.onako2'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.11.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'com.github.twitch4j:twitch4j:1.22.0'
implementation 'org.xerial:sqlite-jdbc:3.47.0.0'
implementation 'ch.qos.logback:logback-classic:1.5.12'
implementation 'com.hexadevlabs:gpt4all-java-binding:1.1.5'
implementation 'org.json:json:20240303'
}
test {
useJUnitPlatform()
}
application {
application {
mainClassName = "rs.onako2.Main"
}
}
jar {
manifest {
attributes(
'Main-Class': 'rs.onako2.Main'
)
}
}