File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/main/groovy/org/elasticsearch/gradle Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ plugins {
2525
2626group = ' org.elasticsearch.gradle'
2727
28- if (GradleVersion . current() < GradleVersion . version(' 3.3 ' )) {
29- throw new GradleException (' Gradle 3.3 + is required to build elasticsearch' )
28+ if (GradleVersion . current() < GradleVersion . version(' 4.9 ' )) {
29+ throw new GradleException (' Gradle 4.9 + is required to build elasticsearch' )
3030}
3131
3232if (JavaVersion . current() < JavaVersion . VERSION_1_8 ) {
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ class BuildPlugin implements Plugin<Project> {
6767 + ' elasticearch.standalone-rest-test, and elasticsearch.build '
6868 + ' are mutually exclusive' )
6969 }
70+ if (GradleVersion . current() < GradleVersion . version(' 4.9' )) {
71+ throw new GradleException (' Gradle 4.9+ is required to use elasticsearch.build plugin' )
72+ }
7073 project. pluginManager. apply(' java' )
7174 project. pluginManager. apply(' carrotsearch.randomized-testing' )
7275 // these plugins add lots of info to our jars
You can’t perform that action at this time.
0 commit comments