Skip to content

Instantly share code, notes, and snippets.

@madan712
Last active March 20, 2025 16:04
Show Gist options
  • Save madan712/fbbea4e7e329471ad3856c7b0be6e043 to your computer and use it in GitHub Desktop.
Save madan712/fbbea4e7e329471ad3856c7b0be6e043 to your computer and use it in GitHub Desktop.
pom.xml - maven dependency for junit with mockito
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.21.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment