Hey Team, New contributor to the project and am ha...
# contributing-to-airbyte
e
Hey Team, New contributor to the project and am having trouble with the gradle build on a source. I have installed Java 14 on a Mac. Building the source using the following gradle command:
Copy code
./gradlew :airbyte-integrations:connectors:source-plaid:airbyteDocker
This is the exception that I got:
Copy code
* What went wrong:
Execution failed for task ':airbyte-commons:compileJava'.
> error: invalid source release: 17

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at <https://help.gradle.org>

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

See <https://docs.gradle.org/7.4/userguide/command_line_interface.html#sec:command_line_warnings>

BUILD FAILED in 7s
18 actionable tasks: 8 executed, 10 up-to-date
I'm guessing it's got something to do with the Java version? Here's what i get when I run
java -version
Copy code
openjdk version "14.0.2" 2020-07-14
OpenJDK Runtime Environment AdoptOpenJDK (build 14.0.2+12)
OpenJDK 64-Bit Server VM AdoptOpenJDK (build 14.0.2+12, mixed mode, sharing)
Am i missing something?
n
You should be using java 17 instead of 14 I believe