Skip to content

Commit 565443c

Browse files
authored
Ignore beats artifacts when resolving all artifact dependencies (elastic#88960) (elastic#88963)
1 parent b61e351 commit 565443c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

distribution/docker/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,3 +385,8 @@ subprojects { Project subProject ->
385385
}
386386
}
387387
}
388+
389+
tasks.named('resolveAllDependencies') {
390+
// Don't try and resolve filebeat or metricbeat snapshots as they may not always be available
391+
configs = configurations.matching { it.name.endsWith('beat') == false }
392+
}

0 commit comments

Comments
 (0)