20 lines
514 B
Groovy
20 lines
514 B
Groovy
|
apply plugin: 'elasticsearch.esplugin'
|
||
|
esplugin {
|
||
|
name 'found-plugin'
|
||
|
description 'Internal Elasticsearch Licensing Plugin for Found'
|
||
|
classname 'org.elasticsearch.license.plugin.LicensePlugin'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':x-plugins:elasticsearch:license:plugin-api')
|
||
|
testCompile project(':x-plugins:elasticsearch:license:licensor')
|
||
|
}
|
||
|
|
||
|
// no tests
|
||
|
test.enabled = false
|
||
|
integTest.enabled = false
|
||
|
|
||
|
dependencyLicenses.enabled = false
|
||
|
|
||
|
compileJava.options.compilerArgs << "-Xlint:-rawtypes,-unchecked"
|