Archived
0
This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mc-core/core/build.gradle
2018-08-07 21:33:05 +03:00

20 lines
441 B
Groovy

group 'mc'
version '1.0-SNAPSHOT'
apply plugin: 'maven'
apply plugin: 'application'
mainClassName = "mc.core.Main"
ext {
log4j_version = '2.5'
}
dependencies {
/* Components */
compile (group: 'commons-io', name: 'commons-io', version: '2.6')
compile (group: 'com.google.guava', name: 'guava', version: '24.1-jre')
/* Named Binary Tags */
compile (group: 'com.flowpowered', name: 'flow-nbt', version: '1.0.0')
}