cve-bin-tool icon indicating copy to clipboard operation
cve-bin-tool copied to clipboard

feat: Add support for Java product versions defined in properties

Open anthonyharrison opened this issue 3 years ago • 0 comments

When parsing a Java POM.xml file, some product versions are defined as properties

<properties>
    <junit.jupiter.version>5.8.2</junit.jupiter.version>
</properties>

These then used in the subsequent specification of the product version

<version>${junit.jupiter.version}</version>

Parsing for product versions should support versions defined in this way as this will improve the scanning of the number of Java modules.

anthonyharrison avatar Jun 20 '22 21:06 anthonyharrison