OpenSearch/qa/sql/no-security/build.gradle
Lee Hinman 632c3e8238 SQL: Fix running gradle run from top-level directory (elastic/x-pack-elasticsearch#3329)
When running `gradle run` at the top level (at least with Gradle 4.4) it
attempts to run multiple instances of the server, causing the run to fail since
they can't both bind to 9200/9300.

This renames the tasks for the `qa` directories to be `runqa` and the task for
the `cli` directory to be `runcli`.

Original commit: elastic/x-pack-elasticsearch@734ab8e132
2017-12-15 08:42:18 -07:00

8 lines
120 B
Groovy

integTestCluster {
setting 'xpack.security.enabled', 'false'
}
runqa {
setting 'xpack.security.enabled', 'false'
}