2015-12-16 01:50:04 +08:00
|
|
|
/*
|
2021-02-03 05:41:39 +08:00
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
|
|
* Side Public License, v 1.
|
2015-12-16 01:50:04 +08:00
|
|
|
*/
|
|
|
|
|
2021-02-12 04:00:39 +08:00
|
|
|
// This is only required because :server needs this at runtime.
|
|
|
|
// We'll be removing this in 8.0 so for now just publish the JAR to make dependency resolution work.
|
|
|
|
apply plugin: 'elasticsearch.publish'
|
|
|
|
|
2020-12-12 23:14:17 +08:00
|
|
|
tasks.named("test").configure { enabled = false }
|
2015-12-16 01:50:04 +08:00
|
|
|
|
2018-01-04 03:12:43 +08:00
|
|
|
// test depend on ES core...
|
2020-04-16 04:23:55 +08:00
|
|
|
disableTasks('forbiddenApisMain')
|
2020-12-12 23:14:17 +08:00
|
|
|
tasks.named("jarHell").configure { enabled = false }
|