-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (42 loc) · 1.19 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'xyz.ReisMiner'
version '1.0'
mainClassName = 'xyz.reisminer.chtop.Bot'
jar {
manifest {
attributes(
'Main-Class': mainClassName
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
repositories {
maven {
url 'https://repo.maven.apache.org/maven2'
name 'Maven Central'
}
maven { url 'https://jitpack.io' }
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation 'org.jraf:klibnotion:1.11.0'
implementation 'com.github.Philipinho:CoinGecko-Java:master-SNAPSHOT'
implementation "net.dv8tion:JDA:5.0.0-alpha.17"
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.jsoup:jsoup:1.15.3'
implementation 'com.sedmelluq:lavaplayer:1.3.77'
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.3'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.jetbrains:annotations:23.0.0'
implementation 'org.openpnp:opencv:4.6.0-0'
}