Skip to content

Commit

Permalink
Updates to plugins/dependencies
Browse files Browse the repository at this point in the history
Also added a requirement for java 11 or newer
  • Loading branch information
frossm committed Aug 19, 2024
1 parent 2a6d1d3 commit 1a5db95
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.fross</groupId>
<artifactId>rpncalc</artifactId>
<version>5.3.0</version>
<version>5.3.1</version>
<packaging>jar</packaging>

<name>rpncalc</name>
Expand Down Expand Up @@ -66,6 +66,9 @@
<requireMavenVersion>
<version>${maven.minimum.version}</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${maven.compiler.release}</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
Expand Down Expand Up @@ -103,7 +106,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
</plugin>

<!-- ========================================================================================== -->
Expand Down Expand Up @@ -208,7 +211,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>chmod</id>
Expand Down Expand Up @@ -236,7 +239,7 @@

<!-- Define additional package repositories. Maven is included by default -->
<repositories>
<!-- Define my custom Github repository where Library lives -->
<!-- Define my custom GitHub repository where Library lives -->
<repository>
<id>github</id>
<name>GitHub frossm Library Package</name>
Expand Down Expand Up @@ -276,7 +279,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.0-RC1</version>
<version>5.11.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rpncalc
version: '5.3.0'
version: '5.3.1'
summary: The command line Reverse Polish Notation (RPN) calculator
description: |
RPNCalc is an easy to use command line based Reverse Polish
Expand Down

0 comments on commit 1a5db95

Please sign in to comment.