This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/master by this push:
new edd5042 Maven-Enforcer-plugin: Set the minimal maven version to 3.6.3
edd5042 is described below
commit edd50429586f911da1fe2cfc9d11d274b90f8612
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu Feb 25 07:36:03 2021 +0100
Maven-Enforcer-plugin: Set the minimal maven version to 3.6.3
---
pom.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/pom.xml b/pom.xml
index 2aa33a0..7469500 100644
--- a/pom.xml
+++ b/pom.xml
@@ -126,6 +126,21 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin-version}</version>
+ <executions>
+ <execution>
+ <id>enforce-maven</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireMavenVersion>
+ <version>${maven-version}</version>
+ </requireMavenVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>