This is an automated email from the ASF dual-hosted git repository.
zstan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 2bda6794d89 IGNITE-29022 Fix inconsistences for maven plugins (#13536)
2bda6794d89 is described below
commit 2bda6794d8991a5e3b3789ffbb32dfb4515b7b9e
Author: Evgeniy Stanilovskiy <[email protected]>
AuthorDate: Tue Sep 1 13:06:44 2026 +0300
IGNITE-29022 Fix inconsistences for maven plugins (#13536)
---
examples/pom.xml | 1 +
modules/benchmarks/pom.xml | 2 ++
modules/calcite/pom.xml | 2 ++
modules/compatibility/pom.xml | 1 +
modules/compress/pom.xml | 3 +++
modules/control-utility/pom.xml | 1 +
modules/core/pom.xml | 2 ++
modules/ducktests/pom.xml | 2 ++
modules/extdata/p2p/pom.xml | 1 +
modules/extdata/pluggable/pom.xml | 1 +
modules/extdata/uri/pom.xml | 2 ++
modules/indexing/pom.xml | 1 +
modules/numa-allocator/pom.xml | 3 +++
modules/opencensus/pom.xml | 2 ++
modules/schedule/pom.xml | 2 ++
modules/spring/pom.xml | 2 ++
modules/sqlline/pom.xml | 2 ++
modules/web/ignite-appserver-test/pom.xml | 1 +
modules/web/ignite-websphere-test/pom.xml | 1 +
modules/zookeeper/pom.xml | 1 +
parent-internal/pom.xml | 1 +
parent/pom.xml | 9 +++++++++
pom.xml | 7 +++++--
23 files changed, 48 insertions(+), 2 deletions(-)
diff --git a/examples/pom.xml b/examples/pom.xml
index 32cedbcdefb..dd93a165072 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -238,6 +238,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/benchmarks/pom.xml b/modules/benchmarks/pom.xml
index 6be002ca34e..b0040016515 100644
--- a/modules/benchmarks/pom.xml
+++ b/modules/benchmarks/pom.xml
@@ -106,6 +106,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
@@ -122,6 +123,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml
index fcb063b8175..7596a45718f 100644
--- a/modules/calcite/pom.xml
+++ b/modules/calcite/pom.xml
@@ -306,6 +306,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>unpack-parser-template</id>
@@ -400,6 +401,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/compatibility/pom.xml b/modules/compatibility/pom.xml
index 284e943ebb0..b98ca9c9517 100644
--- a/modules/compatibility/pom.xml
+++ b/modules/compatibility/pom.xml
@@ -153,6 +153,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/compress/pom.xml b/modules/compress/pom.xml
index 2e970919efa..522e1e2f9f4 100644
--- a/modules/compress/pom.xml
+++ b/modules/compress/pom.xml
@@ -142,7 +142,9 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
@@ -159,6 +161,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/control-utility/pom.xml b/modules/control-utility/pom.xml
index 2856677bf04..1e3a63925db 100644
--- a/modules/control-utility/pom.xml
+++ b/modules/control-utility/pom.xml
@@ -154,6 +154,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 4f5c28a4125..3256a4e219c 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -292,6 +292,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
@@ -578,6 +579,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/ducktests/pom.xml b/modules/ducktests/pom.xml
index 9f50b860f59..d2fdf4d6b1e 100644
--- a/modules/ducktests/pom.xml
+++ b/modules/ducktests/pom.xml
@@ -114,7 +114,9 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
diff --git a/modules/extdata/p2p/pom.xml b/modules/extdata/p2p/pom.xml
index 62d5c4fda00..62a46966eea 100644
--- a/modules/extdata/p2p/pom.xml
+++ b/modules/extdata/p2p/pom.xml
@@ -50,6 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
+ <version>${maven.clean.plugin.version}</version>
<executions>
<execution>
<phase>clean</phase>
diff --git a/modules/extdata/pluggable/pom.xml
b/modules/extdata/pluggable/pom.xml
index 2c609f90c19..93ef3665434 100644
--- a/modules/extdata/pluggable/pom.xml
+++ b/modules/extdata/pluggable/pom.xml
@@ -112,6 +112,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/extdata/uri/pom.xml b/modules/extdata/uri/pom.xml
index d79919f25a5..e305c4410a3 100644
--- a/modules/extdata/uri/pom.xml
+++ b/modules/extdata/uri/pom.xml
@@ -96,6 +96,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
+ <version>${maven.clean.plugin.version}</version>
<executions>
<execution>
<phase>clean</phase>
@@ -131,6 +132,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<id>jar-uri</id>
diff --git a/modules/indexing/pom.xml b/modules/indexing/pom.xml
index e18dafbcb1c..de5cc84d4d9 100644
--- a/modules/indexing/pom.xml
+++ b/modules/indexing/pom.xml
@@ -170,6 +170,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/numa-allocator/pom.xml b/modules/numa-allocator/pom.xml
index 8876e426c17..b26606f9455 100644
--- a/modules/numa-allocator/pom.xml
+++ b/modules/numa-allocator/pom.xml
@@ -169,7 +169,9 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
@@ -186,6 +188,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/modules/opencensus/pom.xml b/modules/opencensus/pom.xml
index 3b0d5e3951c..3c1776e0ee3 100644
--- a/modules/opencensus/pom.xml
+++ b/modules/opencensus/pom.xml
@@ -113,7 +113,9 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
diff --git a/modules/schedule/pom.xml b/modules/schedule/pom.xml
index 99738be0d98..044d3fcd604 100644
--- a/modules/schedule/pom.xml
+++ b/modules/schedule/pom.xml
@@ -88,6 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>false</skip>
</configuration>
@@ -102,6 +103,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/spring/pom.xml b/modules/spring/pom.xml
index c08848124fd..05de04c9328 100644
--- a/modules/spring/pom.xml
+++ b/modules/spring/pom.xml
@@ -121,7 +121,9 @@
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
diff --git a/modules/sqlline/pom.xml b/modules/sqlline/pom.xml
index 275a71bd85b..5307c4a7f6a 100644
--- a/modules/sqlline/pom.xml
+++ b/modules/sqlline/pom.xml
@@ -46,7 +46,9 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
diff --git a/modules/web/ignite-appserver-test/pom.xml
b/modules/web/ignite-appserver-test/pom.xml
index 80438f54c89..49e8834e742 100644
--- a/modules/web/ignite-appserver-test/pom.xml
+++ b/modules/web/ignite-appserver-test/pom.xml
@@ -62,6 +62,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/web/ignite-websphere-test/pom.xml
b/modules/web/ignite-websphere-test/pom.xml
index 64954203288..0aa67a59b2f 100644
--- a/modules/web/ignite-websphere-test/pom.xml
+++ b/modules/web/ignite-websphere-test/pom.xml
@@ -65,6 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/modules/zookeeper/pom.xml b/modules/zookeeper/pom.xml
index 28605774472..e2335aecdaa 100644
--- a/modules/zookeeper/pom.xml
+++ b/modules/zookeeper/pom.xml
@@ -175,6 +175,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${maven.jar.plugin.version}</version>
<executions>
<execution>
<goals>
diff --git a/parent-internal/pom.xml b/parent-internal/pom.xml
index 2d802e6a236..f3d6c1d5624 100644
--- a/parent-internal/pom.xml
+++ b/parent-internal/pom.xml
@@ -78,6 +78,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
diff --git a/parent/pom.xml b/parent/pom.xml
index 075bc463c75..9de98386d4b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -112,6 +112,7 @@
<maven.bundle.plugin.version>5.1.9</maven.bundle.plugin.version>
<maven.checkstyle.plugin.version>3.6.0</maven.checkstyle.plugin.version>
<maven.flatten.plugin.version>1.7.3</maven.flatten.plugin.version>
+ <maven.remote.resources.version>3.3.0</maven.remote.resources.version>
<maven.flatten.file.name>pom-installed.xml</maven.flatten.file.name>
<maven.model.version>3.8.9</maven.model.version>
<checkstyle.puppycrawl.version>12.3.1</checkstyle.puppycrawl.version>
@@ -547,6 +548,12 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>${maven.clean.plugin.version}</version>
+ </plugin>
</plugins>
</pluginManagement>
@@ -723,6 +730,7 @@
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>${maven.dependency.plugin.version}</version>
<executions>
<execution>
<id>copy-libs</id>
@@ -1054,6 +1062,7 @@
<plugin><!-- generates dependencies licenses -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
+ <version>${maven.remote.resources.version}</version>
<executions>
<execution>
<id>ignite-dependencies</id>
diff --git a/pom.xml b/pom.xml
index 59927f99694..6e7fe06a8da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -241,10 +241,11 @@
<build>
<plugins>
<plugin><!-- skipping generation of dependencies licenses
- to keep clean /maven-shared-archive-resources/META-INF
- to prevent license.txt moving to sources.zip -->
+ to keep clean /maven-shared-archive-resources/META-INF
+ to prevent license.txt moving to sources.zip -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
+ <version>${maven.remote.resources.version}</version>
<executions>
<execution>
<id>ignite-dependencies</id>
@@ -650,6 +651,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
+ <version>${maven.clean.plugin.version}</version>
<executions>
<execution>
<phase>clean</phase>
@@ -669,6 +671,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>