mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
Eclipse was confused for two reasons: 1. `:x-pack:plugin` depended on itself. 2. `ql`, `sql`, and `eql` couldn't see some methods. I fixed problem 1 by only adding the "depends on itself" configuration outside of eclipse. I fixed problem 2 by making a `test` sub-project in `ql` that contains test utilities and depending on those where possible.
13 lines
353 B
Groovy
13 lines
353 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
test.enabled = false
|
|
|
|
dependencies {
|
|
api project(':test:framework')
|
|
api project(path: xpackModule('core'), configuration: 'default')
|
|
api project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
api project(xpackModule('ql:test'))
|
|
|
|
// TOML parser for EqlActionIT tests
|
|
api 'io.ous:jtoml:2.0.0'
|
|
}
|