Skip to content

Commit

Permalink
plugin upgrades
Browse files Browse the repository at this point in the history
.. some test additions
  • Loading branch information
andrus committed Sep 19, 2024
1 parent 2277a52 commit 7885e43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public void testConvert_Byte() {
@Test
public void testConvert_Short() {
assertEquals(true, CONVERTER.convert((short) 1));
assertEquals(false, CONVERTER.convert((short) 0));
}

@Test
Expand All @@ -32,6 +33,7 @@ public void testConvert_Integer() {
@Test
public void testConvert_Long() {
assertEquals(true, CONVERTER.convert((long) 1));
assertEquals(false, CONVERTER.convert((long) 0));
}

@Test
Expand Down
9 changes: 3 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,24 +197,21 @@
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M6</version>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
<version>3.5.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M7</version>
<version>3.5.0</version>
<executions>
<execution>
<id>integration-test</id>
Expand Down

0 comments on commit 7885e43

Please sign in to comment.