Top level build.gradle should have build task

Original commit: elastic/x-pack-elasticsearch@bc5aa9e5ae
This commit is contained in:
David Roberts 2017-01-24 14:48:03 +00:00
parent 8dbaef186e
commit ba7fa6b69d
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,11 @@ task assemble(dependsOn: bundlePack) {
description = 'Assembles the outputs of this project.'
}
task build(dependsOn: assemble) {
group = 'Build'
description = 'Assembles and tests this project.'
}
task test(dependsOn: [':prelert-legacy:elasticsearch:test', ':prelert-legacy:kibana:test']) {
group = 'Build'
description = 'Assembles and tests this project.'