mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-11 14:30:50 +01:00
10 lines
337 B
Groovy
10 lines
337 B
Groovy
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'
|
|
}
|
|
}
|