Hello, I’m working on <issue #1663> and so I added...
# contribute
c
Hello, I’m working on issue #1663 and so I added the checkstyle plugin for javadoc linting. However, this causes the build to fail with checkstyle enabled gradle tries to run the pulumicompilePubJava task, which fails due to missing dependencies and generated sources. Disabling this task with
Copy code
tasks.named("compilePubJava").configure { enabled = false }
fixes the build, but I want to confirm if this is the correct approach. I would appreciate any advice on how to properly resolve this Thank you
Here's the output I get when i try to build with checkstyle plugin: https://pastebin.com/z5G6WjTF