-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
68 lines (57 loc) · 1.6 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
64
65
66
67
68
/*
* Developed by HeyZeer0 on 12/7/18 7:51 PM.
* Last Modification 12/7/18 7:49 PM.
*
* Copyright HeyZeer0 (c) 2018.
* This project is over AGLP 3.0 License.
*/
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'application'
id 'com.sedmelluq.jdaction' version '1.0.2'
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
group 'net.heyzeer0.aladdin'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "net.heyzeer0.aladdin.Main"
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'org.apache.commons:commons-lang3:3.5'
compile 'commons-io:commons-io:2.5'
compile 'com.rethinkdb:rethinkdb-driver:2.3.3'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.0.pr1'
compile 'com.sedmelluq:jda-nas:1.0.5'
compile 'com.github.fedy2:yahoo-weather-java-api:2.0.2'
compile 'com.udojava:EvalEx:1.0'
compile 'org.json:json:20170516'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.discordbots:DBL-Java-Library:+'
compile 'com.github.taycaldwell:riot-api-java:+'
compile 'net.heyzeer0.papi:PaladinsAPI:+'
compile 'com.github.FredBoat:Lavalink-Client:-SNAPSHOT'
compile 'net.dv8tion:JDA:3.8.1_450'
}
shadowJar {
exclude("natives/darwin/**")
exclude("natives/win-x86/**")
exclude("natives/win-x86-64/**")
exclude("natives/linux-x86/**")
}
task wrapper(type: Wrapper) {
gradleVersion = '4.5.1'
}
compileJava {
options.encoding = 'UTF-8'
}
shadowJar.archiveName = 'AladdinBOT-1.0.jar'