41 lines
1.3 KiB
Groovy
41 lines
1.3 KiB
Groovy
apply plugin: 'elasticsearch.testclusters'
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
name 'security-authorization-engine'
|
|
description 'An example spi extension plugin for security that implements an Authorization Engine'
|
|
classname 'org.elasticsearch.example.AuthorizationEnginePlugin'
|
|
extendedPlugins = ['x-pack-security']
|
|
licenseFile rootProject.file('licenses/APACHE-LICENSE-2.0.txt')
|
|
noticeFile rootProject.file('NOTICE.txt')
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly "org.elasticsearch.plugin:x-pack-core:${versions.elasticsearch}"
|
|
testCompile "org.elasticsearch.client:x-pack-transport:${versions.elasticsearch}"
|
|
}
|
|
|
|
integTest {
|
|
dependsOn buildZip
|
|
runner {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
}
|
|
}
|
|
|
|
testClusters.integTest {
|
|
setting 'xpack.security.enabled', 'true'
|
|
setting 'xpack.ilm.enabled', 'false'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
|
|
// This is important, so that all the modules are available too.
|
|
// There are index templates that use token filters that are in analysis-module and
|
|
// processors are being used that are in ingest-common module.
|
|
testDistribution = 'DEFAULT'
|
|
|
|
user role: 'custom_superuser'
|
|
}
|
|
|
|
check.dependsOn integTest
|