Skip to content

Commit

Permalink
[Gradle] Fix lazy task configuration regression (elastic#111506)
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby authored Aug 1, 2024
1 parent 9494a6c commit 5b88264
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/hdfs-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def hdfs2Jar = tasks.register("hdfs2jar", ShadowJar) {
configurations << project.configurations.hdfs2
}

tasks.withType(ShadowJar) {
tasks.withType(ShadowJar).configureEach {
dependencies {
// exclude(dependency('commons-io:commons-io:2.8.0'))
exclude(dependency("com.carrotsearch.randomizedtesting:randomizedtesting-runner:.*"))
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/esql/arrow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ tasks.named("thirdPartyAudit").configure {
)
}

test {
tasks.named("test").configure {
jvmArgs('--add-opens=java.base/java.nio=ALL-UNNAMED')
}

0 comments on commit 5b88264

Please sign in to comment.