forked from Cube-Space/Dynmap-Multiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (22 loc) · 829 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
plugins {
id 'application'
}
dependencies {
implementation 'com.google.code.gson:gson:2.2.4'
implementation 'org.slf4j:slf4j-api:1.7.5'
implementation 'org.slf4j:slf4j-log4j12:1.7.5'
implementation 'log4j:log4j:1.2.17'
implementation 'org.yaml:snakeyaml:1.13'
implementation 'commons-io:commons-io:20030203.000550'
implementation 'io.netty:netty-all:4.1.42.Final'
implementation 'commons-lang:commons-lang:20030203.000129'
implementation 'net.lingala.zip4j:zip4j:1.3.1'
implementation 'net.cubespace:Yamler-Core:2.3.1-20150720.092759-2'
implementation 'org.gradle:org.gradle.gradle.plugin:7.5.1'
}
group= 'net.cubespace.dynmap'
version= '0.5.0'
description= 'Dynmap-MultiServer'
application {
mainClass = 'net.cubespace.dynmap.multiserver.Main'
}