15 lines
394 B
Groovy
15 lines
394 B
Groovy
version '0.1'
|
|
|
|
apply plugin: 'maven'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "mc.core.Main"
|
|
|
|
dependencies {
|
|
/* Components */
|
|
compile (group: 'commons-io', name: 'commons-io', version: '2.6')
|
|
compile (group: 'com.google.guava', name: 'guava', version: '26.0-jre')
|
|
/* Named Binary Tags */
|
|
compile (group: 'com.flowpowered', name: 'flow-nbt', version: '1.0.1-SNAPSHOT')
|
|
}
|