mirror of
https://github.com/ArthurDanjou/WitchRush.git
synced 2026-01-14 20:19:32 +01:00
18 lines
229 B
Groovy
18 lines
229 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'net.berrygames.witchrush'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|