forked from nerdsinspace/nocomment-master
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 1.06 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
group 'nocomment.master'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.postgresql:postgresql:42.2.14'
compile 'org.apache.commons:commons-dbcp2:2.7.0'
compile 'io.prometheus:simpleclient:0.9.0'
compile 'io.prometheus:simpleclient_hotspot:0.9.0'
compile 'io.prometheus:simpleclient_httpserver:0.9.0'
compile 'it.unimi.dsi:fastutil:8.1.0'
compile 'net.openhft:chronicle-map:3.20.2'
compile 'net.openhft:chronicle-values:2.20.6'
compile 'net.openhft:chronicle-bytes:2.20.7'
compile 'com.github.pengrad:java-telegram-bot-api:4.9.0'
compile 'com.google.code.gson:gson:2.8.7'
testImplementation 'junit:junit:4.13'
}
test {
useJUnit()
}
jar {
manifest {
attributes(
'Main-Class': 'nocomment.master.NoComment'
)
}
}
shadowJar {
classifier = 'unoptimised'
}
// TODO: fix proguard w/ new SlurpManager$AskStatus build.finalizedBy('optimize')