Skip to content

Commit

Permalink
Enforce maven version is greater than 3.8.6 (#334)
Browse files Browse the repository at this point in the history
* Enforce minimal maven version

* Enforce minimal maven version
  • Loading branch information
ismailsimsek committed May 31, 2024
1 parent c9c4ce2 commit ca3f505
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,29 @@
<module>debezium-server-iceberg-dist</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.8.6,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit ca3f505

Please sign in to comment.