org.sonar.l10n.java.rules.squid.S3419.html Maven / Gradle / Ivy
Shared naming conventions allow teams to collaborate effectively. This rule raises an issue when the a pom's groupId
does not match the provided regular expression.
Noncompliant Code Example
With the default regular expression: (com|org)(\.[a-z][a-z-0-9]*)+
<project ...>
<groupId>myCo</groupId> <!-- Noncompliant -->
<!-- ... -->
</project>
Compliant Solution
<project ...>
<groupId>com.myco</groupId>
<!-- ... -->
</project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy