-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (32 loc) · 1005 Bytes
/
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
apply plugin: 'application'
group = 'org.comroid'
version = '1.0-SNAPSHOT'
mainClassName = 'org.comroid.rabbitcord.RabbitCord'
repositories {
maven { url 'https://maven.comroid.org' }
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
if (findProject(':japi') != null)
implementation project(':japi')
else implementation 'org.comroid:japi:+'
// discord
implementation 'net.dv8tion:JDA:5.+'
implementation 'club.minnced:discord-webhooks:0.+'
// rabbitmq
implementation 'com.rabbitmq:amqp-client:5.18.0'
// emoji
implementation 'com.kcthota:emoji4j:6.+'
// minecraft
implementation 'net.kyori:adventure-api:4.+'
implementation 'net.kyori:adventure-text-serializer-gson:4.+'
// utility
compileOnly 'org.projectlombok:lombok:+'
annotationProcessor 'org.projectlombok:lombok:+'
// tests
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}