You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: bundle codeanalyzer-java JAR in published wheels (#284) (#285)
Hatchling applied the root .gitignore `*.jar` rule at build time but did not
honor the nested `!codeanalyzer-*.jar` negation that keeps the JAR tracked in
git, so every wheel/sdist built inside a git repo (CI) silently dropped the JAR.
Published wheels since v1.2.0 were jarless, making `CLDK.java(...)` fail with
"codeanalyzer jar not found" after a plain `pip install cldk`.
Force-include the JAR via `[tool.hatch.build] artifacts`, and add a release
guard that fails before publishing if a built artifact is missing the JAR.
0 commit comments