mirror of
https://bitbucket.org/projectswg/pswgcommonfx.git
synced 2026-01-16 22:04:22 -05:00
17 lines
187 B
Groovy
17 lines
187 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
sourceCompatibility = 9
|
|
targetCompatibility = 9
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':pswgcommon')
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|