Skip to content

synaos/vulnerabilities-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 11, 2025
07b07a0 · Feb 11, 2025

History

28 Commits
Oct 25, 2024
Oct 25, 2024
Feb 11, 2025
Oct 25, 2024
Oct 25, 2024
Oct 25, 2024
Oct 25, 2024

Repository files navigation

Vulnerabilities Cache

Provides an easy way to resolve vulnerabilities by packages and the affected versions.

Usage

Java

Dependencies

  1. Ensure you're using the Maven repository which is serving the packages:
    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>
  2. Select your dependency:
    <dependencies>
       <!-- Use this if you want to address the cache directly and
            don't use one of the other modules. -->
       <dependency>
          <groupId>com.github.synaos.vulnerabilities-cache</groupId>
          <artifactId>core</artifactId>
          <version>[RELEASE-TAG]</version>
       </dependency>
    
       <!-- Use this if you want to evaluate Maven dependencies. -->
       <dependency>
          <groupId>com.github.synaos.vulnerabilities-cache</groupId>
          <artifactId>maven</artifactId>
          <version>[RELEASE-TAG]</version>
       </dependency>
    </dependencies>