2015-10-30 02:25:24 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
import org.elasticsearch.gradle.precommit.PrecommitTasks
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2015-10-30 02:25:24 -04:00
|
|
|
apply plugin: 'elasticsearch.build'
|
2015-10-29 14:40:19 -04:00
|
|
|
apply plugin: 'com.bmuschko.nexus'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "org.elasticsearch:elasticsearch:${version}"
|
2015-10-30 02:25:24 -04:00
|
|
|
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
2015-11-10 17:58:46 -05:00
|
|
|
compile "junit:junit:${versions.junit}"
|
|
|
|
compile 'org.hamcrest:hamcrest-all:1.3'
|
|
|
|
compile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
|
|
|
compile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
|
|
|
compile "org.apache.httpcomponents:httpclient:${versions.httpclient}"
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-30 02:25:24 -04:00
|
|
|
compileJava.options.compilerArgs << '-Xlint:-cast,-deprecation,-fallthrough,-overrides,-rawtypes,-serial,-try,-unchecked'
|
|
|
|
compileTestJava.options.compilerArgs << '-Xlint:-rawtypes'
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2015-10-30 02:25:24 -04:00
|
|
|
// the main files are actually test files, so use the appopriate forbidden api sigs
|
|
|
|
forbiddenApisMain {
|
|
|
|
bundledSignatures = ['jdk-unsafe', 'jdk-deprecated']
|
|
|
|
signaturesURLs = [PrecommitTasks.getResource('/forbidden/all-signatures.txt'),
|
|
|
|
PrecommitTasks.getResource('/forbidden/test-signatures.txt')]
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|