Browse Source

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

* [DOCS] Remove snapshot references from stable plugin example

* Fix indentation

* More indentation issues
Abdon Pijpelink 2 years ago
parent
commit
c1490d48a4
1 changed files with 3 additions and 12 deletions
  1. 3 12
      docs/plugins/development/example-text-analysis-plugin.asciidoc

+ 3 - 12
docs/plugins/development/example-text-analysis-plugin.asciidoc

@@ -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()
 }