-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (24 loc) · 1018 Bytes
/
build.gradle
File metadata and controls
27 lines (24 loc) · 1018 Bytes
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
plugins {
id 'java-library'
}
def adventureVersion = "4.12.0"
//tasks.shadowJar.dependsOn ':api:shadowJar'
dependencies {
api 'commons-io:commons-io:2.11.0'
api 'com.github.clubobsidian:trident:d814584a88'
api project(path: ':api')
api project(path: ':parser')
testImplementation project(path: ':mock')
api 'com.ezylang:EvalEx:3.0.5'
api 'com.github.ClubObsidian:FuzzUtil:1.1.0'
api("com.google.inject:guice:$guiceVersion")
api "net.kyori:adventure-text-minimessage:$adventureVersion"
api "net.kyori:adventure-text-serializer-gson:$adventureVersion"
api "net.kyori:adventure-text-serializer-legacy:$adventureVersion"
api 'org.apache.commons:commons-lang3:3.12.0'
api "com.github.clubobsidian:wrappy:$wrappyVersion"
api 'com.github.ben-manes.caffeine:caffeine:3.1.8'
testImplementation "cloud.commandframework:cloud-core:$cloudVersion"
api "cloud.commandframework:cloud-annotations:$cloudVersion"
api "io.github.classgraph:classgraph:4.8.149"
}