forked from Nan1t/NanoLimbo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
46 lines (37 loc) · 1.03 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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
allprojects {
group 'ua.nanit'
version '1.8.1'
}
subprojects {
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
compileJava {
options.encoding = "UTF-8"
}
tasks.withType(JavaCompile).configureEach {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
implementation 'org.spongepowered:configurate-yaml:4.1.2'
implementation 'io.netty:netty-all:4.1.101.Final'
implementation 'net.kyori:adventure-nbt:4.14.0'
implementation 'com.grack:nanojson:1.8'
implementation 'com.google.code.gson:gson:2.10.1'
}
shadowJar {
from 'LICENSE'
minimize()
}
test {
useJUnitPlatform()
}
}