plugin: pom.xml: add dependency upon parent pom (for version properties)
Moved version properties to parent pom (i.e. a pom that isn't itself)
This commit is contained in:
parent
b8133989e5
commit
93ac9f74df
3 changed files with 5 additions and 6 deletions
|
@ -30,11 +30,6 @@
|
||||||
<mojo-executor.version>2.2.0</mojo-executor.version>
|
<mojo-executor.version>2.2.0</mojo-executor.version>
|
||||||
<lombok.version>1.16.12</lombok.version>
|
<lombok.version>1.16.12</lombok.version>
|
||||||
<map-builder.version>1.0.0</map-builder.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>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
@ -139,7 +139,7 @@ abstract class AbstractCheckMojo extends AbstractMojo {
|
||||||
|
|
||||||
private Properties getProperties() throws MojoFailureException {
|
private Properties getProperties() throws MojoFailureException {
|
||||||
// load properties from the plugin pom.xml
|
// load properties from the plugin pom.xml
|
||||||
val pluginArtifactId = KEMITIX_ARTIFACTID + "-maven-plugin";
|
val pluginArtifactId = KEMITIX_ARTIFACTID + "-parent";
|
||||||
val pluginArtifact = new DefaultArtifact(KEMITIX_GROUPID, pluginArtifactId, rulesetVersion, null, "", null,
|
val pluginArtifact = new DefaultArtifact(KEMITIX_GROUPID, pluginArtifactId, rulesetVersion, null, "", null,
|
||||||
new DefaultArtifactHandler("pom")
|
new DefaultArtifactHandler("pom")
|
||||||
);
|
);
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -19,6 +19,10 @@
|
||||||
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
|
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
|
||||||
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
||||||
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
<maven-deploy-plugin.version>2.8.2</maven-deploy-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>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
|
Loading…
Reference in a new issue