Hello everyone
I have problems to be able to analyze a JAVA project but it does not have .jar files, it only has WAR type files, has anyone had problems or a reference site to be able to analyze it?
Hi,
You need to provide both the source code, .java
files, and the byte code, .class
files, to analysis. You cannot simply point analysis at an archive and expect it to tunnel in. You’ll need to add analysis at an earlier stage in your pipeline, presumably just after compilation.
HTH,
Ann