We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d873b commit 4176113Copy full SHA for 4176113
build-tools/src/main/java/org/elasticsearch/gradle/testclusters/RunTask.java
@@ -46,7 +46,7 @@ public abstract class RunTask extends DefaultTestClustersTask {
46
47
private Boolean apmServerEnabled = false;
48
49
- private List<String> plugins = List.of();
+ private List<String> plugins;
50
51
private Boolean preserveData = false;
52
@@ -115,7 +115,12 @@ public void setPlugins(String plugins) {
115
}
116
117
118
+ public void setPlugins(List<String> plugins) {
119
+ this.plugins = plugins;
120
+ }
121
+
122
@Input
123
+ @Optional
124
public List<String> getPlugins() {
125
return plugins;
126
0 commit comments