Skip to content

Instantly share code, notes, and snippets.

@hilmarf
Created January 27, 2026 12:39
Show Gist options
  • Select an option

  • Save hilmarf/28788a924fdf59645c2f04483a2180ec to your computer and use it in GitHub Desktop.

Select an option

Save hilmarf/28788a924fdf59645c2f04483a2180ec to your computer and use it in GitHub Desktop.
enforce-maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${maven.version}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment