Initial commit

This commit is contained in:
Šesták Vít
2016-01-10 17:31:07 +01:00
commit 4b87ced31f
104 changed files with 4870 additions and 0 deletions

9
build.gradle Normal file
View File

@@ -0,0 +1,9 @@
task buildPlayApp(type:Exec){
//environment("JAVA_HOME", System.getProperty("java.home"))
if(System.getProperty("os.name").toLowerCase().startsWith("win")){
// unsupported OS because of silent fails; commandLine 'cmd', '/c', 'activator', 'stage'
commandLine 'report_error'
}else{
commandLine './activator', 'clean', 'dist'
}
}