2015-10-29 14:40:19 -04:00
|
|
|
|
|
|
|
esplugin {
|
|
|
|
description 'The Google Compute Engine (GCE) Discovery plugin allows to use GCE API for the unicast discovery mechanism.'
|
|
|
|
classname 'org.elasticsearch.plugin.discovery.gce.GceDiscoveryPlugin'
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:58:46 -05:00
|
|
|
versions << [
|
|
|
|
'google': '1.20.0'
|
|
|
|
]
|
|
|
|
|
2015-10-29 14:40:19 -04:00
|
|
|
dependencies {
|
2015-11-10 17:58:46 -05:00
|
|
|
compile "com.google.apis:google-api-services-compute:v1-rev71-${versions.google}"
|
|
|
|
compile "com.google.api-client:google-api-client:${versions.google}"
|
|
|
|
compile "com.google.oauth-client:google-oauth-client:${versions.google}"
|
|
|
|
compile "com.google.http-client:google-http-client:${versions.google}"
|
|
|
|
compile "com.google.http-client:google-http-client-jackson2:${versions.google}"
|
|
|
|
compile 'com.google.code.findbugs:jsr305:1.3.9'
|
2015-10-29 14:40:19 -04:00
|
|
|
compile "org.apache.httpcomponents:httpclient:${versions.httpclient}"
|
2015-11-10 17:58:46 -05:00
|
|
|
compile "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
|
|
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
|
|
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencyLicenses {
|
|
|
|
mapping from: /google-.*/, to: 'google'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileJava.options.compilerArgs << '-Xlint:-rawtypes,-unchecked'
|
|
|
|
|
|
|
|
test {
|
|
|
|
// this is needed for insecure plugins, remove if possible!
|
|
|
|
systemProperty 'tests.artifact', project.name
|
|
|
|
}
|