-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
61 lines (50 loc) · 1.8 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
54
55
56
57
58
59
60
61
subprojects {
apply plugin: 'java'
apply plugin: 'java-library'
group = 'dev.kafein'
version = '1.0.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven { url = 'https://jitpack.io' }
maven { url = 'https://repo.papermc.io/repository/maven-public/' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
implementation('org.spongepowered:configurate-yaml:3.7.2') {
exclude(module: 'snakeyaml')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
exclude(module: 'guava')
exclude(module: 'guice')
}
implementation('org.spongepowered:configurate-gson:3.7.2') {
exclude(module: 'gson')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
exclude(module: 'guava')
exclude(module: 'guice')
}
implementation('net.kyori:adventure-platform-api:4.2.0') {
exclude(module: 'adventure-bom')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
}
implementation('net.kyori:adventure-text-minimessage:4.12.0') {
exclude(module: 'adventure-bom')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
}
compileOnly 'org.jetbrains:annotations:24.0.0'
compileOnly 'com.google.guava:guava:32.1.1-jre'
compileOnly 'com.google.code.gson:gson:2.8.0'
}
test {
useJUnitPlatform()
}
}