-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (54 loc) · 1.63 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
53
54
55
56
57
58
59
60
61
62
63
plugins {
id 'java'
id 'eclipse'
id 'application'
}
group = 'io.github.romvoid95'
repositories {
mavenLocal()
maven {
url "https://jitpack.io"
}
mavenCentral()
}
dependencies {
implementation 'com.github.ReadOnlyDevelopment:JDATools:4.0.4'
implementation('net.dv8tion:JDA:5.0.0-beta.10') {
exclude module: 'opus-java'
}
implementation 'org.quartz-scheduler:quartz:2.2.1'
implementation 'org.slf4j:slf4j-api:2.0.7'
implementation 'ch.qos.logback:logback-classic:1.4.7'
implementation 'com.github.ROMVoid95:EliteDangerousAPI:2.1.0'
implementation 'com.rethinkdb:rethinkdb-driver:2.4.4'
implementation 'io.github.cdimascio:dotenv-java:3.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.beust:jcommander:1.82'
implementation 'com.intellisrc:spark-core:2.9.4-unofficial-4'
implementation group: 'org.zeromq', name: 'jeromq', version: '0.4.0'
compileOnly 'org.projectlombok:lombok:1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'
testCompileOnly 'org.projectlombok:lombok:1.18.28'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.28'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
jar {
manifest {
attributes 'Main-Class': 'io.github.romvoid95.scgbot.SCG',
'Implementation-Version': project.version
}
}
application {
mainClass = 'io.github.romvoid95.scgbot.SCG'
run {
args '-t', project.DISCORD_TOKEN
}
}