Skip to content

Commit

Permalink
chore : prerequisite maven version should be different from maven ver…
Browse files Browse the repository at this point in the history
…sion

We bumped `maven.version` in #1702 to `3.8.1` that broke compatibility
with maven < 3.8.1 . Add a property `minimum.maven.version` to keep
minimum supported maven version.

Signed-off-by: Rohan Kumar <rohaan@redhat.com>
  • Loading branch information
rohanKanojia committed Feb 11, 2024
1 parent 1ead2bb commit b5714b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</developers>

<prerequisites>
<maven>${maven.version}</maven>
<maven>${minimum.maven.version}</maven>
</prerequisites>

<scm>
Expand Down Expand Up @@ -76,6 +76,7 @@
<jnr-unixsocket.version>0.38.19</jnr-unixsocket.version>
<junit.jupiter.version>5.8.2</junit.jupiter.version>
<maven.version>3.8.1</maven.version>
<minimum.maven.version>3.3.9</minimum.maven.version>
<mockito.version>4.5.1</mockito.version>
<project.build.outputTimestamp>2023-08-18T06:38:11Z</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit b5714b1

Please sign in to comment.