79381739

Date: 2025-01-23 15:58:26
Score: 3
Natty:
Report link

How about excluding it using the exclude directive in the main springboot pom.xml file?

<dependencies>
  ...
  <dependency>
    <groupId>your.custom.library.groupId</groupId>
    <artifactId>artifactId</artifactId>
    ...
    <exclusions>
      <exclusion>
        <groupId>unwanted.test.dependency.groupId</groupId>
        <artifactId>artifactId</artifactId>
      </exclusion>
    </exclusions>
  </dependency>
</dependencies>
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Roman Ivanov