-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
53 lines (48 loc) · 1.62 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
apply plugin: 'java'
group 'dev.elliotfrost.anarchybot'
version ''
jar {
manifest{
attributes 'Main-Class': 'dev.elliotfrost.anarchybot.Bot'
}
}
repositories {
google()
mavenCentral()
maven {
url 'https://m2.dv8tion.net/releases'
}
maven {
url 'https://duncte123.jfrog.io/artifactory/maven'
}
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.mattmalec.com/repository/releases'
}
}
dependencies {
implementation('net.dv8tion:JDA:4.3.0_324')
implementation('com.google.code.gson:gson:2.8.8')
implementation('io.github.cdimascio:dotenv-java:2.2.0')
implementation group: 'me.duncte123', name: 'botCommons', version: '2.3.8'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.6'
implementation 'com.mattmalec:Pterodactyl4J:2.BETA_80'
implementation group: 'com.zaxxer', name: 'HikariCP', version: '5.0.0'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.26'
implementation('com.google.api-client:google-api-client:1.32.2')
implementation('com.coreoz:wisp:2.2.1')
compileOnly('com.coreoz:wisp:2.2.1')
compileOnly('net.dv8tion:JDA:4.3.0_324')
compileOnly('io.github.cdimascio:dotenv-java:2.2.0')
compileOnly("me.duncte123:botCommons:2.3.8")
compileOnly("ch.qos.logback:logback-classic:1.2.6")
compileOnly('com.mattmalec:Pterodactyl4J:2.BETA_80')
compileOnly("com.zaxxer:HikariCP:5.0.0")
compileOnly("mysql:mysql-connector-java:8.0.26")
compileOnly('com.google.api-client:google-api-client:1.32.2')
}
test {
useJUnitPlatform()
}