mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 05:58:44 +00:00
c46a0e8708
Backport of #48849. Update `.editorconfig` to make the Java settings the default for all files, and then apply a 2-space indent to all `*.gradle` files. Then reformat all the files.
24 lines
651 B
Groovy
24 lines
651 B
Groovy
evaluationDependsOn(xpackModule('core'))
|
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
esplugin {
|
|
name 'x-pack-rollup'
|
|
description 'Elasticsearch Expanded Pack Plugin - Rollup'
|
|
classname 'org.elasticsearch.xpack.rollup.Rollup'
|
|
extendedPlugins = ['x-pack-core']
|
|
}
|
|
archivesBaseName = 'x-pack-rollup'
|
|
|
|
compileJava.options.compilerArgs << "-Xlint:-rawtypes"
|
|
compileTestJava.options.compilerArgs << "-Xlint:-rawtypes"
|
|
|
|
|
|
dependencies {
|
|
compileOnly project(":server")
|
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
integTest.enabled = false
|