28 lines
589 B
Groovy
28 lines
589 B
Groovy
|
group 'uk.co.neviyn'
|
||
|
version 'DEVELOPMENT'
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'application'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
applicationDefaultJvmArgs = ["-Dfile.encoding=UTF-8", "-Dorg.slf4j.simpleLogger.defaultLogLevel=warn"]
|
||
|
mainClassName = "uk.co.neviyn.pokergame.App"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.encoding = 'UTF-8'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile 'org.slf4j:slf4j-api:1.7.22'
|
||
|
compile 'org.slf4j:slf4j-simple:1.7.22'
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
systemProperty "file.encoding", "utf-8"
|
||
|
}
|