mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 20:27:23 -04:00
13 lines
666 B
Groovy
13 lines
666 B
Groovy
include ':logstash-core', 'logstash-core-benchmarks', 'ingest-converter', 'benchmark-cli', 'logstash-integration-tests'
|
|
project(':logstash-core').projectDir = new File('./logstash-core')
|
|
project(':logstash-core-benchmarks').projectDir = new File('./logstash-core/benchmarks')
|
|
project(':logstash-integration-tests').projectDir = new File('./qa/integration')
|
|
project(':ingest-converter').projectDir = new File('./tools/ingest-converter')
|
|
project(':benchmark-cli').projectDir = new File('./tools/benchmark-cli')
|
|
|
|
Boolean oss = System.getenv('OSS').equals('true')
|
|
|
|
if (!oss) {
|
|
include ':logstash-xpack'
|
|
project(':logstash-xpack').projectDir = new File('./x-pack')
|
|
}
|