forked from MC2018/BotManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 679 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 679 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
plugins {
id "java"
}
sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
if (!hasProperty('mainClass')) {
ext.mainClass = 'botmanager.BotManagerDisplay'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'net.dv8tion:JDA:4.1.1_104'
compile 'org.seleniumhq.selenium:selenium-java:3.141.59'
compile 'org.jsoup:jsoup:1.12.2'
compile 'com.vdurmont:emoji-java:5.1.1'
implementation files('libs/Speedrun4J.jar')
}
task(debug, dependsOn: 'classes', type: JavaExec) {
main = 'botmanager.BotManagerDisplay'
classpath = sourceSets.main.runtimeClasspath
args 'server'
debug true
}