Skip to content

Commit

Permalink
Fixes for MRELEASE-1009:
Browse files Browse the repository at this point in the history
- clean up ambigous reference in JUnit test
- upgrade Surefire to 2.22.0 to avoid a NullPointerException under Java 10 when executing "mvn package"
  • Loading branch information
theit committed Jun 28, 2018
1 parent f0887ba commit d5862ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void testStoreToXML()
public void testStoreToXMLEncoded()
throws Exception
{
new JDomProperties( null ).storeToXML( null, null, null );
new JDomProperties( null ).storeToXML( (OutputStream) null, null, (String) null );
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down

0 comments on commit d5862ca

Please sign in to comment.