dumb gradle question. when do i use just the `proj...
# contributing-to-airbyte
c
dumb gradle question. when do i use just the
project(...)
syntax versus when i do the
files(project(…))
syntax? is the idea that i’m specifying that i only depend on some specific task of the project that i’m depending on?
Copy code
integrationTestImplementation project(':airbyte-integrations:connectors:destination-snowflake')
    integrationTestImplementation files(project(':airbyte-integrations:bases:base-normalization').airbyteDocker.outputs)
u
one depends on outputs, the other depends on the sources