Skip to content

Commit

Permalink
Merge pull request #6 from jecklgamis/next
Browse files Browse the repository at this point in the history
Add enforcer plugin, upgrade dependencies
  • Loading branch information
jecklgamis authored Mar 19, 2024
2 parents 0575e73 + 67a60f9 commit d1ee8c0
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.0.0-jre</version>
<version>33.1.0-jre</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -112,6 +112,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-java</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>21</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d1ee8c0

Please sign in to comment.