Skip to content

Commit

Permalink
Issue #176: Upgrade dependencies
Browse files Browse the repository at this point in the history
- Add enforcer plugin to check build requirements
  • Loading branch information
reckart committed Nov 29, 2024
1 parent 94738b2 commit 508553a
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion ruta-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,30 @@
</environments>
</configuration>
</plugin>


<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>[3.9.9,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[${maven.compiler.release},)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
Expand Down

0 comments on commit 508553a

Please sign in to comment.