-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (42 loc) · 1.32 KB
/
build.gradle
File metadata and controls
49 lines (42 loc) · 1.32 KB
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
plugins {
id "com.github.johnrengelman.shadow" version "6.1.0"
id "java"
id "eclipse"
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding = "UTF-8"
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.konghq:unirest-java:3.11.12'
implementation 'com.jsoniter:jsoniter:0.9.23'
implementation 'net.dv8tion:JDA:4.2.0_247'
implementation 'com.sedmelluq:lavaplayer:1.3.73'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.jsoup:jsoup:1.14.1'
implementation 'org.mongodb:mongo-java-driver:3.12.9'
implementation 'it.unimi.dsi:fastutil:8.5.3'
implementation 'com.rometools:rome:1.16.0'
implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.21.6'
}
shadowJar {
minimize {
exclude(dependency('com.konghq:.*:.*'))
exclude(dependency('net.dv8tion:.*:.*'))
exclude(dependency('org.apache.commons:.*:.*'))
exclude(dependency('com.github.TeamNewPipe:.*:.*'))
}
}
jar {
manifest {
attributes(
'Main-Class': 'me.kavin.mememachine.Main'
)
}
}
group = 'me.kavin.mememachine'
version = '1.0'