mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-19 04:45:07 -04:00
Bump Elasticsearch to a minimum of JDK 21 (#112252)
This commit is contained in:
parent
d7cc407417
commit
71d4648105
9 changed files with 9 additions and 9 deletions
|
@ -4,4 +4,4 @@
|
|||
# build and test Elasticsearch for this branch. Valid Java versions
|
||||
# are 'java' or 'openjdk' followed by the major release number.
|
||||
|
||||
ES_BUILD_JAVA=jdk17
|
||||
ES_BUILD_JAVA=jdk21
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
# build and test Elasticsearch for this branch. Valid Java versions
|
||||
# are 'java' or 'openjdk' followed by the major release number.
|
||||
|
||||
ES_BUILD_JAVA=openjdk17
|
||||
ES_BUILD_JAVA=openjdk21
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
# build and test Elasticsearch for this branch. Valid Java versions
|
||||
# are 'java' or 'openjdk' followed by the major release number.
|
||||
|
||||
ES_BUILD_JAVA=openjdk17
|
||||
ES_BUILD_JAVA=openjdk21
|
||||
|
|
|
@ -1 +1 @@
|
|||
17
|
||||
21
|
||||
|
|
|
@ -1 +1 @@
|
|||
17
|
||||
21
|
||||
|
|
|
@ -1 +1 @@
|
|||
17
|
||||
21
|
||||
|
|
|
@ -52,7 +52,7 @@ public class AggregatorProcessor implements Processor {
|
|||
|
||||
@Override
|
||||
public SourceVersion getSupportedSourceVersion() {
|
||||
return SourceVersion.RELEASE_17;
|
||||
return SourceVersion.RELEASE_21;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -48,7 +48,7 @@ public class ConsumeProcessor implements Processor {
|
|||
|
||||
@Override
|
||||
public SourceVersion getSupportedSourceVersion() {
|
||||
return SourceVersion.latest();
|
||||
return SourceVersion.RELEASE_21;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -44,7 +44,7 @@ public class EvaluatorProcessor implements Processor {
|
|||
|
||||
@Override
|
||||
public SourceVersion getSupportedSourceVersion() {
|
||||
return SourceVersion.RELEASE_17;
|
||||
return SourceVersion.RELEASE_21;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue