Jeremy Branham
10/10/2021, 4:33 PM* What went wrong:
An exception occurred applying plugin request [id: 'airbyte-docker']
> Failed to apply plugin 'airbyte-docker'.
> A problem occurred starting process 'command 'docker''
docker
is on my path -
$ which docker
/usr/local/bin/docker
A little more stack trace -
Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin 'airbyte-docker'.
at ...
... 250 more
Caused by: org.gradle.process.internal.ExecException: A problem occurred starting process 'command 'docker''
at ...
Caused by: net.rubygrapefruit.platform.NativeException: Could not start 'docker'
at ...
Caused by: java.io.IOException: Cannot run program "docker" (in directory "/Users/me/git/airbyte/airbyte/airbyte-cli"): error=2, No such file or directory
at net.rubygrapefruit.platform.internal.DefaultProcessLauncher.start(DefaultProcessLauncher.java:25)
... 7 more
Caused by: java.io.IOException: error=2, No such file or directory
... 8 more
user
10/10/2021, 4:39 PMadoptjdk
to openjdk
- and it worked. 🤔user
10/10/2021, 9:31 PMopenjdk@1.14.0-1
will build from CLI, but IDE experience is not great.
Tried 2 different versions of Eclipse. If I hack the eclipse .ini and run with the latest Temurin JDK, I can modify the gradle jvm to openjdk@1.14.0-1
, but still get this error when trying to import the project -
Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin 'airbyte-docker'.
...
Caused by: org.gradle.process.internal.ExecException: Process 'command 'docker'' finished with non-zero exit value 1
at...
AirbyteDockerPlugin$_apply_closure8.doCall(precompiled_AirbyteDocker:173)
at AirbyteDockerPlugin$_apply_closure8.doCall(precompiled_AirbyteDocker)
With Intellij, I can import the project, but it doesn't sync any gradle config changes [I'm not experienced with Idea - so I may be doing something wrong]
Also tried vscode, but it doesn't successfully identify some dependencies, and so links to source files are broken, and errors are incorrectly shown 😞user
10/10/2021, 9:33 PMuser
10/10/2021, 11:13 PMuser
10/12/2021, 2:52 PM