Skip to content

Commit

Permalink
Fix build and test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shirolimit committed Jan 22, 2025
1 parent 6362f65 commit 1bdcf63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@
<includes>
<include>**/*IntegrationTest.java</include>
</includes>
<!-- Needed because the project uses the old mockito version -->
<argLine>--add-opens=java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -166,6 +168,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<configuration>
<!-- Fixes https://bugs.openjdk.org/browse/JDK-8223552 -->
<doclint>-html</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,7 @@ public void execute(Statement statement) throws SQLException {
inOrder.verify(lifecycleListenerMock).onCommunicationFailure(eq(clientWithKeepAlive),
any(EOFException.class));
inOrder.verify(lifecycleListenerMock).onDisconnect(eq(clientWithKeepAlive));
inOrder.verify(lifecycleListenerMock).beforeConnect(eq(clientWithKeepAlive));
inOrder.verify(lifecycleListenerMock).onConnect(eq(clientWithKeepAlive));
verifyNoMoreInteractions(lifecycleListenerMock);
} finally {
Expand Down

0 comments on commit 1bdcf63

Please sign in to comment.