Skip to content

Commit

Permalink
Avoid starting test fixtures when resolving all external dependencies (
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira authored May 11, 2022
1 parent a10cc8d commit 22aeebc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/repository-hdfs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -388,4 +388,9 @@ tasks.named("thirdPartyAudit").configure {
'org.apache.hadoop.thirdparty.protobuf.UnsafeUtil$JvmMemoryAccessor',
'org.apache.hadoop.thirdparty.protobuf.UnsafeUtil$MemoryAccessor'
)
}
}

tasks.named('resolveAllDependencies') {
// This avoids spinning up the test fixture when downloading all dependencies
configs = project.configurations - [project.configurations.krb5Config]
}

0 comments on commit 22aeebc

Please sign in to comment.