plugin:AbstractCheckMojo: load dependency versions from plugin pom.xml
This commit is contained in:
parent
e951d2c99b
commit
ca01a08e81
2 changed files with 39 additions and 12 deletions
|
@ -30,6 +30,11 @@
|
|||
<mojo-executor.version>2.2.0</mojo-executor.version>
|
||||
<lombok.version>1.16.12</lombok.version>
|
||||
<map-builder.version>1.0.0</map-builder.version>
|
||||
|
||||
<properties-maven-plugin.version>1.0.0</properties-maven-plugin.version>
|
||||
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
|
||||
<checkstyle.version>7.5.1</checkstyle.version>
|
||||
<sevntu.version>1.23.0</sevntu.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -96,6 +101,34 @@
|
|||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin><!-- maven-compiler-plugin -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>properties-maven-plugin</artifactId>
|
||||
<version>${properties-maven-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>set-system-properties</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<properties>
|
||||
<property>
|
||||
<name>maven-checkstyle-plugin.version</name>
|
||||
<value>${maven-checkstyle-plugin.version}</value>
|
||||
</property>
|
||||
<property>
|
||||
<name>checkstyle.version</name>
|
||||
<value>${checkstyle.version}</value>
|
||||
</property>
|
||||
<property>
|
||||
<name>sevntu.version</name>
|
||||
<value>${sevntu.version}</value>
|
||||
</property>
|
||||
</properties>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin><!-- properties-maven-plugin -->
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
|
|
|
@ -61,18 +61,6 @@ public abstract class AbstractCheckMojo extends AbstractMojo {
|
|||
|
||||
private static final String CONFIG_LOCATION = "configLocation";
|
||||
|
||||
@Setter
|
||||
@Parameter(defaultValue = "2.17")
|
||||
private String mavenCheckstylePluginVersion;
|
||||
|
||||
@Setter
|
||||
@Parameter(defaultValue = "7.5.1")
|
||||
private String checkstyleVersion;
|
||||
|
||||
@Setter
|
||||
@Parameter(defaultValue = "1.23.0")
|
||||
private String sevntuVersion;
|
||||
|
||||
@Setter
|
||||
@Parameter(defaultValue = "${project.version}")
|
||||
private String rulesetVersion;
|
||||
|
@ -97,6 +85,12 @@ public abstract class AbstractCheckMojo extends AbstractMojo {
|
|||
* @throws MojoFailureException on execution failure
|
||||
*/
|
||||
protected final void performCheck(final String level) throws MojoExecutionException, MojoFailureException {
|
||||
// load versions from plugin's pom.xml
|
||||
val properties = System.getProperties();
|
||||
val mavenCheckstylePluginVersion = properties.getProperty("maven-checkstyle-plugin.version");
|
||||
val checkstyleVersion = properties.getProperty("checkstyle.version");
|
||||
val sevntuVersion = properties.getProperty("sevntu.version");
|
||||
|
||||
val checkstyle = MojoExecutor.dependency(CHECKSTYLE_GROUPID, CHECKSTYLE_ARTIFACTID, checkstyleVersion);
|
||||
val sevntu = MojoExecutor.dependency(SEVNTU_GROUPID, SEVNTU_ARTIFACTID, sevntuVersion);
|
||||
val ruleset = MojoExecutor.dependency(KEMITIX_GROUPID, KEMITIX_ARTIFACTID, rulesetVersion);
|
||||
|
|
Loading…
Reference in a new issue