AbstractCheckMojo: use version of plugin not the using project
${project.version} resolves to the version of the project using the plugin, rather than the version of the plugin that is being used.
This commit is contained in:
parent
68dc770f8d
commit
a74f097844
1 changed files with 3 additions and 2 deletions
|
@ -71,8 +71,6 @@ abstract class AbstractCheckMojo extends AbstractMojo {
|
|||
|
||||
private static final String CONFIG_LOCATION = "configLocation";
|
||||
|
||||
@Setter
|
||||
@Parameter(defaultValue = "${project.version}")
|
||||
private String rulesetVersion;
|
||||
|
||||
@Setter
|
||||
|
@ -98,6 +96,9 @@ abstract class AbstractCheckMojo extends AbstractMojo {
|
|||
* @throws MojoFailureException on execution failure
|
||||
*/
|
||||
final void performCheck(final String level) throws MojoExecutionException, MojoFailureException {
|
||||
rulesetVersion = mavenProject.getPlugin(KEMITIX_GROUPID + ":" + KEMITIX_ARTIFACTID + "-maven-plugin")
|
||||
.getVersion();
|
||||
debug("rulesetVersion: %s", rulesetVersion);
|
||||
val properties = getProperties();
|
||||
debug("properties: %s", properties);
|
||||
|
||||
|
|
Loading…
Reference in a new issue