All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.squid.S3417.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

Whether they are disallowed locally for security, license, or dependability reasons, forbidden dependencies should not be used.

This rule raises an issue when the group or artifact id of a dependency matches the configured forbidden dependency pattern.

Noncompliant Code Example

With a parameter of: *:.*log4j.*

 
<dependency> <!-- Noncompliant --> 
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId> 
    <version>1.2.17</version> 
</dependency> 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy