-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
51 lines (45 loc) · 1.15 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
plugins {
id 'java'
id 'idea'
id 'application'
id 'io.franzbecker.gradle-lombok' version '4.0.0'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group = 'at.helpch'
version = '1.2.3'
mainClassName = 'at.helpch.papibot.PapiBotBootstrap'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven {
url = 'https://repo.aikar.co/content/groups/aikar/'
}
}
dependencies {
compile 'org.reflections:reflections:+'
compile 'net.dv8tion:JDA:+'
compile 'com.google.code.gson:gson:+'
compile 'commons-io:commons-io:+'
compile 'com.google.inject:guice:+'
compile 'org.slf4j:slf4j-simple:+'
compile 'mysql:mysql-connector-java:5.1.33'
compile 'co.aikar:idb-core:1.0.0-SNAPSHOT'
compile 'com.zaxxer:HikariCP:2.4.1'
compile 'org.apache.httpcomponents:httpclient:+'
}
lombok {
version = '1.18.2'
sha256 = ""
}
shadowJar {
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
relocate 'co.aikar.commands', 'at.helpch.papibot.idb'
}
compileJava {
options.encoding = 'UTF-8'
options.incremental = false
}