File tree 2 files changed +4
-4
lines changed
buildSrc/src/main/groovy/org/elasticsearch/gradle
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,11 +92,11 @@ Contributing to the Elasticsearch codebase
92
92
93
93
** Repository:** [ https://github.com/elastic/elasticsearch ] ( https://github.com/elastic/elasticsearch )
94
94
95
- JDK 9 is required to build Elasticsearch. You must have a JDK 9 installation
95
+ JDK 10 is required to build Elasticsearch. You must have a JDK 10 installation
96
96
with the environment variable ` JAVA_HOME ` referencing the path to Java home for
97
- your JDK 9 installation. By default, tests use the same runtime as ` JAVA_HOME ` .
97
+ your JDK 10 installation. By default, tests use the same runtime as ` JAVA_HOME ` .
98
98
However, since Elasticsearch, supports JDK 8 the build supports compiling with
99
- JDK 9 and testing on a JDK 8 runtime; to do this, set ` RUNTIME_JAVA_HOME `
99
+ JDK 10 and testing on a JDK 8 runtime; to do this, set ` RUNTIME_JAVA_HOME `
100
100
pointing to the Java home of a JDK 8 installation. Note that this mechanism can
101
101
be used to test against other JDKs as well, this is not only limited to JDK 8.
102
102
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ import java.time.ZonedDateTime
58
58
class BuildPlugin implements Plugin<Project > {
59
59
60
60
static final JavaVersion minimumRuntimeVersion = JavaVersion . VERSION_1_8
61
- static final JavaVersion minimumCompilerVersion = JavaVersion . VERSION_1_9
61
+ static final JavaVersion minimumCompilerVersion = JavaVersion . VERSION_1_10
62
62
63
63
@Override
64
64
void apply (Project project ) {
You can’t perform that action at this time.
0 commit comments