Skip to content

Commit 9c899a1

Browse files
authored
Add publish plugin to ES|QL projects (#109441) (#109488)
We want to make the JavaDocs for ES|QL publicly available. Add the publishing plugin so we can publish these artifacts. # Conflicts: # x-pack/plugin/esql-core/build.gradle
1 parent 5a2cef5 commit 9c899a1

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

x-pack/plugin/esql/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import org.elasticsearch.gradle.internal.info.BuildParams
33
apply plugin: 'elasticsearch.internal-es-plugin'
44
apply plugin: 'elasticsearch.internal-cluster-test'
55
apply plugin: 'elasticsearch.string-templates'
6+
apply plugin: 'elasticsearch.publish'
7+
68
esplugin {
79
name 'x-pack-esql'
810
description 'The plugin that powers ESQL for Elasticsearch'

x-pack/plugin/esql/compute/ann/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
apply plugin: 'elasticsearch.build'
2+
apply plugin: 'elasticsearch.publish'
3+
4+
base {
5+
archivesName = 'x-pack-esql-compute-ann'
6+
}
27

38
tasks.named('forbiddenApisMain').configure {
49
// doesn't depend on anything

x-pack/plugin/esql/compute/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
apply plugin: 'elasticsearch.build'
22
apply plugin: 'elasticsearch.string-templates'
3+
apply plugin: 'elasticsearch.publish'
4+
5+
base {
6+
archivesName = 'x-pack-esql-compute'
7+
}
38

49
dependencies {
510
compileOnly project(':server')

0 commit comments

Comments
 (0)