diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-27 02:54:40 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-27 02:54:40 +0100 |
commit | 658486386648f186ed8ce934e0abf4d999252a67 (patch) | |
tree | cc2a6b5fb75b913e981d27ee54c11de6b7815710 /pom.xml | |
parent | abc407d2525035c934047d9ad7e84fc1277cd32b (diff) | |
download | jgit-658486386648f186ed8ce934e0abf4d999252a67.tar.gz jgit-658486386648f186ed8ce934e0abf4d999252a67.zip |
Require maven 3.5.2
This prepares builds on Java 9 [1].
The maven 2 tag "prerequisites" is not honored by maven 3
hence use maven-enforcer-plugin to enforce the minimum
maven version.
[1] https://issues.apache.org/jira/browse/MNG-6148
Change-Id: I57f5051a0641b1bd21f9f888f1a17d8f98e879e5
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 25 |
1 files changed, 21 insertions, 4 deletions
@@ -70,10 +70,6 @@ <connection>scm:git:https://git.eclipse.org/r/jgit/jgit</connection> </scm> - <prerequisites> - <maven>3.3.1</maven> - </prerequisites> - <ciManagement> <system>hudson</system> <url>https://hudson.eclipse.org/jgit/</url> @@ -463,6 +459,27 @@ <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>3.0.0-M1</version> + <executions> + <execution> + <id>enforce-maven</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <requireMavenVersion> + <version>3.5.2</version> + </requireMavenVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> |