15 lines
326 B
Groovy
15 lines
326 B
Groovy
group 'mc'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
/* Core */
|
|
compile_excludeCopy project(':core')
|
|
|
|
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
|
|
testCompile group: 'com.carrotsearch', name: 'junit-benchmarks', version: '0.7.0'
|
|
}
|
|
|
|
|
|
test {
|
|
exclude "ru/core/events/*Benchmark.class"
|
|
} |