Files
openide/java/java-impl/resources/inspectionDescriptions/JavaModuleNaming.html
Bas Leijdekkers e90a4de2d9 Java: improve inspection messages
for "Java module name contradicts convention" inspection

GitOrigin-RevId: aee175101de907aea9c6ce65a12ad1ed02513dc6
2025-04-15 08:34:10 +00:00

17 lines
508 B
HTML

<html>
<body>
Reports module names in <code>module-info.java</code> that violate the Java Platform Module System
<a href="http://mail.openjdk.org/pipermail/jpms-spec-experts/2017-March/000659.html">recommendation</a>
to avoid encoding version information in module names by ending the name with one or more digits.
<p><b>Example:</b></p>
<pre><code>
module foo.bar2 {}
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
module foo.bar {}
</code></pre>
<!-- tooltip end -->
</body>
</html>