build.gradle 386 B

12345678910111213
  1. apply plugin: 'elasticsearch.standalone-rest-test'
  2. apply plugin: 'elasticsearch.rest-test'
  3. dependencies {
  4. testCompile project(path: xpackModule('core'), configuration: 'runtime')
  5. testCompile project(path: xpackModule('ml'), configuration: 'runtime')
  6. }
  7. integTestCluster {
  8. setting 'xpack.security.enabled', 'false'
  9. setting 'xpack.ml.enabled', 'false'
  10. numNodes = 1
  11. }