Skip to content

Commit

Permalink
Dependecy update: jacoco, mockito, maven-jxr
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaccan committed Nov 17, 2023
1 parent dbd7537 commit 24d1362
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.Mockito.verifyZeroInteractions;
import static org.mockito.Mockito.verifyNoInteractions;

/**
* @author Luigi R. Viggiano
Expand Down Expand Up @@ -136,7 +136,7 @@ public void testPropertyChangeListenerOnReloadWhenRollbackOperationException() t
@Test
public void testPropertyChangeListenerOnReloadWhenNoChangesHaveBeenMade() throws Throwable {
cfg.reload();
verifyZeroInteractions(propertyChangeListener);
verifyNoInteractions(propertyChangeListener);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyZeroInteractions;
import static org.mockito.Mockito.verifyNoInteractions;

/**
* @author Luigi R. Viggiano
Expand Down Expand Up @@ -101,7 +101,7 @@ public void testSetPropertyWhenValuesAreEqual() throws Throwable {
cfg.setProperty("primeNumber", "13");
assertEquals("13", cfg.primeNumber());

verifyZeroInteractions(propertyChangeListener);
verifyNoInteractions(propertyChangeListener);
}

@Test
Expand Down Expand Up @@ -404,7 +404,7 @@ public void testRemovePropertyChangeListenerWithPropertyName() throws Throwable
cfg.setProperty("hostname", "google.com");
cfg.setProperty("port", "22");

verifyZeroInteractions(propertyChangeListener);
verifyNoInteractions(propertyChangeListener);
}

@Before
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.11</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down Expand Up @@ -225,7 +225,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -411,7 +411,7 @@
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-changelog-plugin</artifactId>
Expand Down

0 comments on commit 24d1362

Please sign in to comment.