Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ checkmarx-ast-eclipse-plugin/lib/ast-cli-java-wrapper-2.4.20.jar filter=lfs diff
checkmarx-ast-eclipse-plugin/lib/ast-cli-java-wrapper-2.4.21.jar filter=lfs diff=lfs merge=lfs -text
checkmarx-ast-eclipse-plugin/lib/ast-cli-java-wrapper-2.4.23.jar filter=lfs diff=lfs merge=lfs -text
checkmarx-ast-eclipse-plugin/lib/ast-cli-java-wrapper-2.4.24.jar filter=lfs diff=lfs merge=lfs -text
devassist-lib/lib/*.jar filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
.vs/
*.jar
!checkmarx-ast-eclipse-plugin/lib/*.jar
!devassist-lib/lib/*.jar

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

common-lib/lib/*.jar is excluded from the repo, breaking the entire Tycho build from a clean checkout

common-lib/META-INF/MANIFEST.MF declares a Bundle-ClassPath of 8 jars under common-lib/lib/ (ast-cli-java-wrapper, jackson-, slf4j-, commons-lang3), but .gitignore's blanket .jar rule only has exceptions for checkmarx-ast-eclipse-plugin/lib/.jar and devassist-lib/lib/.jar — never common-lib/lib/.jar — and .gitattributes never LFS-tracks it either. I confirmed common-lib/lib/ does not exist in a clean clone, and an actual mvn -pl common-lib,checkmarx-ast-eclipse-plugin,checkmarx-ast-eclipse-plugin-tests -am compile run fails with 38 unresolved-type errors (CxWrapper, CxConfig, CxException, org.slf4j.Logger all missing) in common-lib's own Authenticator.java/TenantSettingsProvider.java. Since the test module depends on common-lib in the same reactor, this blocks CI/every downstream build, not just common-lib.

Suggested fix: Add !common-lib/lib/*.jar to .gitignore and an LFS tracking line to .gitattributes (mirroring the devassist-lib entries added in this same PR), then commit the actual jars.

Evidence: .gitignore:7-9 has no common-lib exception; ls common-lib/lib → "No such file or directory"; mvn compile reproduced the failure independently.

Loading
Loading