diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-24 15:40:12 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-24 15:55:40 +0100 |
commit | f61b7e5406c76275ecbef172c049b8a8a0cd3e2b (patch) | |
tree | 7f07fcb1f5ef0b7ff72ccd4302b6012a73411b26 /org.eclipse.jgit.benchmarks | |
parent | 06ea895967e7861fad15cf2021d3545efa8de3d9 (diff) | |
download | jgit-f61b7e5406c76275ecbef172c049b8a8a0cd3e2b.tar.gz jgit-f61b7e5406c76275ecbef172c049b8a8a0cd3e2b.zip |
Require latest Maven version 3.6.3
Change-Id: Iab08ddcdb7edc3c9ac55343d3d40012e19792ea0
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.benchmarks')
-rw-r--r-- | org.eclipse.jgit.benchmarks/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/pom.xml b/org.eclipse.jgit.benchmarks/pom.xml index 2c101f0105..4b2a0ae337 100644 --- a/org.eclipse.jgit.benchmarks/pom.xml +++ b/org.eclipse.jgit.benchmarks/pom.xml @@ -51,6 +51,26 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>3.0.0-M3</version> + <executions> + <execution> + <id>enforce-maven</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <requireMavenVersion> + <version>3.6.3</version> + </requireMavenVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> |