setting maven plugin versions

This commit is contained in:
2026-05-21 19:41:37 -04:00
parent 537d69a25f
commit 098944e6c0
+4
View File
@@ -24,6 +24,8 @@
<image.registry>docker.inteligr8.com</image.registry> <image.registry>docker.inteligr8.com</image.registry>
<!-- using version properties so they can be overridden by child projects or Maven executions --> <!-- using version properties so they can be overridden by child projects or Maven executions -->
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
<maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version>
<kubernetes-maven-plugin.version>1.19.0</kubernetes-maven-plugin.version> <kubernetes-maven-plugin.version>1.19.0</kubernetes-maven-plugin.version>
<regex-maven-plugin.version>1.0.7</regex-maven-plugin.version> <regex-maven-plugin.version>1.0.7</regex-maven-plugin.version>
@@ -96,6 +98,7 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<executions> <executions>
<execution> <execution>
<id>copy-resources</id> <id>copy-resources</id>
@@ -146,6 +149,7 @@
<!-- This plugin prevents the project from deploying to the Maven Repository, as it is pointless --> <!-- This plugin prevents the project from deploying to the Maven Repository, as it is pointless -->
<plugin> <plugin>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration> <configuration>
<skip>true</skip> <skip>true</skip>
</configuration> </configuration>