forked from LEAGUE-Level6/DiscordBot_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (33 loc) · 930 Bytes
/
Copy pathbuild.gradle
File metadata and controls
42 lines (33 loc) · 930 Bytes
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
plugins {
id 'java'
id 'application'
}
repositories {
repositories {
mavenCentral()
}
}
ext {
jupiterVersion = '5.7.0'
}
dependencies {
implementation 'net.dv8tion:JDA:5.0.0-beta.24'
implementation 'ch.qos.logback:logback-classic:1.5.6'
implementation 'net.aksingh:owm-japis:2.5.3.0'
implementation 'com.google.code.gson:gson:2.8.5'
testImplementation 'org.mockito:mockito-core:3.4.0'
implementation 'org.springframework.boot:spring-boot-starter-webflux:2.4.1'
testImplementation "org.junit.jupiter:junit-jupiter:${jupiterVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-migrationsupport:${jupiterVersion}"
}
group = 'org.jointheleague'
version = '2.0'
description = 'discordbot'
sourceCompatibility = '1.8'
test {
useJUnitPlatform()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
mainClassName = 'org.jointheleague.Launcher'