-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
72 lines (64 loc) · 1.79 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
69
70
71
72
plugins {
id 'java'
id 'idea'
id 'application'
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'com.github.johnrengelman.shadow' version '2.0.2'
}
group = 'me.piggypiglet'
version = '4.0.6.9'
mainClassName = 'me.piggypiglet.gary.GaryBootstrap'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
jcenter()
maven {
url = 'https://jitpack.io'
}
maven {
url = 'https://repo.aikar.co/content/groups/aikar/'
}
maven {
url = 'https://repo.piggypiglet.me/repository/maven-releases/'
}
}
dependencies {
compile 'org.reflections:reflections:+'
compile 'ai.api:libai:+'
compile 'net.dv8tion:JDA:+'
compile 'me.piggypiglet:TimeAPI:+'
compile 'com.google.inject:guice:+'
compile 'org.apache.httpcomponents:httpclient:+'
compile 'org.apache.commons:commons-lang3:+'
compile 'commons-io:commons-io:+'
compile 'org.slf4j:slf4j-simple:+'
compile 'com.intellij:annotations:+'
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.jsoup:jsoup:1.11.3'
compile 'com.kcthota:emoji4j:5.0'
compile 'me.xdrop:fuzzywuzzy:+'
compile 'com.google.code.findbugs:jsr305:3.0.2'
}
lombok {
version = '1.18.4'
sha256 = ""
}
import org.apache.tools.ant.filters.ReplaceTokens
processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}
shadowJar {
delete "build/libs/lang.json"
delete "build/libs/schema.sql"
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
relocate 'co.aikar.commands', 'me.piggypiglet.gary.idb'
}
compileJava.options.encoding = 'UTF-8'