15 lines
394 B
Groovy
15 lines
394 B
Groovy
version '1.0-SNAPSHOT'
|
|
|
|
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: '24.1-jre')
|
|
/* Named Binary Tags */
|
|
compile (group: 'com.flowpowered', name: 'flow-nbt', version: '1.0.0')
|
|
}
|