
The Elasticsearch transport client has been deprecated since Spring Boot 2.2.0 and is about to be removed from Spring Data Elasticsearch and Elasticsearch itself in their next major releases. The available REST client support variants are now the preferred way of using Elasticsearch features. Closes gh-19668
14 lines
464 B
Groovy
14 lines
464 B
Groovy
plugins {
|
|
id 'org.springframework.boot.starter'
|
|
}
|
|
|
|
description = "Starter for using Elasticsearch search and analytics engine and Spring Data Elasticsearch"
|
|
|
|
dependencies {
|
|
api enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
|
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
|
api ('org.springframework.data:spring-data-elasticsearch') {
|
|
exclude group: 'org.elasticsearch.client', module: 'transport'
|
|
}
|
|
}
|