Hi, I’m facing an issue when I want (only) to exec...
# package-authoring
t
Hi, I’m facing an issue when I want (only) to execute
make build_java
target, on a DevPod, on our bridge provider.
Copy code
root@94297aacd130:/workspaces/pulumi-ovh# make build_java
/workspaces/pulumi-ovh/bin/pulumi-java-gen generate --schema provider/cmd/pulumi-resource-ovh/schema.json --out sdk/java  --build gradle-nexus
WARN: secret property applicationSecret (property of config) does not have an Output type
cd sdk/java/ && \
        echo "module fake_java_module // Exclude this directory from Go tools\n\ngo 1.17" > go.mod && \
        gradle --console=plain build

FAILURE: Build failed with an exception.

* What went wrong:
kotlin/jvm/internal/Intrinsics

* 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>

BUILD FAILED in 0s
make: *** [Makefile:104: build_java] Error 1
My devcontainer configuration: https://github.com/ovh/pulumi-ovh/blob/main/.devcontainer/Dockerfile Do you know what should I need to fix in order to execute this target? Thanks 🙂