[DOCS] Remove SNAPSHOT references from stable plugin example (#94952)

* [DOCS] Remove snapshot references from stable plugin example

* Fix indentation

* More indentation issues
This commit is contained in:
Abdon Pijpelink 2023-03-31 16:36:05 +02:00 committed by GitHub
parent 2bec7f4d8b
commit c1490d48a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,15 +18,12 @@ directory:
+
[source,gradle]
----
ext.pluginApiVersion = '8.7.0-SNAPSHOT'
ext.luceneVersion = '9.5.0-snapshot-d19c3e2e0ed'
ext.pluginApiVersion = '8.7.0'
ext.luceneVersion = '9.5.0'
buildscript {
ext.pluginApiVersion = '8.7.0-SNAPSHOT'
ext.pluginApiVersion = '8.7.0'
repositories {
maven {
url = 'https://snapshots.elastic.co/maven/'
}
mavenCentral()
}
dependencies {
@ -46,12 +43,6 @@ group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven {
url = "https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/d19c3e2e0ed/"
}
maven {
url = 'https://snapshots.elastic.co/maven/'
}
mavenLocal()
mavenCentral()
}