Merge branch '7.0.x' into pmd7-language-lifecycle

This commit is contained in:
Clément Fournier
2022-11-24 20:06:49 +01:00
219 changed files with 8186 additions and 1779 deletions

View File

@@ -30,6 +30,7 @@
<delimiters>
<delimiter>${*}</delimiter>
</delimiters>
<escapeString>\</escapeString>
</configuration>
</plugin>
</plugins>

View File

@@ -65,7 +65,7 @@ The following types are considered valid: pom, jar, maven-plugin, ejb, war, ear,
externalInfoUrl="${pmd.website.baseurl}/pmd_rules_pom_errorprone.html#projectversionasdependencyversion">
<description>
Using that expression in dependency declarations seems like a shortcut, but it can go wrong.
By far the most common problem is the use of &#x24;{project.version} in a BOM or parent POM.
By far the most common problem is the use of \${project.version} in a BOM or parent POM.
</description>
<priority>3</priority>
<properties>
@@ -89,7 +89,7 @@ By far the most common problem is the use of &#x24;{project.version} in a BOM or
...
<dependency>
...
<version>${project.version}</version>
<version>\${project.version}</version>
</dependency>
</project>
]]>