Skip to content

Commit c1490d4

Browse files
[DOCS] Remove SNAPSHOT references from stable plugin example (#94952)
* [DOCS] Remove snapshot references from stable plugin example * Fix indentation * More indentation issues
1 parent 2bec7f4 commit c1490d4

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

docs/plugins/development/example-text-analysis-plugin.asciidoc

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,12 @@ directory:
1818
+
1919
[source,gradle]
2020
----
21-
ext.pluginApiVersion = '8.7.0-SNAPSHOT'
22-
ext.luceneVersion = '9.5.0-snapshot-d19c3e2e0ed'
21+
ext.pluginApiVersion = '8.7.0'
22+
ext.luceneVersion = '9.5.0'
2323
2424
buildscript {
25-
ext.pluginApiVersion = '8.7.0-SNAPSHOT'
25+
ext.pluginApiVersion = '8.7.0'
2626
repositories {
27-
maven {
28-
url = 'https://snapshots.elastic.co/maven/'
29-
}
3027
mavenCentral()
3128
}
3229
dependencies {
@@ -46,12 +43,6 @@ group 'org.example'
4643
version '1.0-SNAPSHOT'
4744
4845
repositories {
49-
maven {
50-
url = "https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/d19c3e2e0ed/"
51-
}
52-
maven {
53-
url = 'https://snapshots.elastic.co/maven/'
54-
}
5546
mavenLocal()
5647
mavenCentral()
5748
}

0 commit comments

Comments
 (0)