1
0
mirror of synced 2025-12-19 18:14:56 -05:00

integration test configurations extend other configurations (#66694)

This commit is contained in:
Edward Gao
2025-09-26 10:07:25 -07:00
committed by GitHub
parent 309d282735
commit eba9c379e1

View File

@@ -254,6 +254,13 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
project.tasks.named('build').configure {
dependsOn project.tasks.integrationTestJava
}
project.configurations {
integrationTestImplementation.extendsFrom implementation
integrationTestImplementation.extendsFrom testImplementation
integrationTestRuntimeOnly.extendsFrom runtimeOnly
integrationTestRuntimeOnly.extendsFrom testRuntimeOnly
}
}
project.tasks.matching {