Hi all, I am exploring the Airbyte codebase. I am ...
# contributing-to-airbyte
k
Hi all, I am exploring the Airbyte codebase. I am using IntelliJ, but unable to find a few packages like
AirbyteMessage
(image for reference, line 34). It is not available at
io.airbyte.protocol.models
What am I missing here?
those classes are generated as part of the build.
u
so if you run
SUB_BUILD=PLATFORM ./gradlew build
u
it'll generate the classes and then intellij will be able to find them
u
Sometimes I also have to open the Gradle right-side tab and press the Refresh button to refresh gradle projects in IntelliJ, after doing the command-line gradle build that generates classes.
u
That is super helpful - thank you!