Skip to content

Commit

Permalink
Updated the dependency name after 1.13.1 change
Browse files Browse the repository at this point in the history
  • Loading branch information
Raibaz committed Sep 23, 2022
1 parent 5f7a350 commit 3c78f7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ All you need to get started is just to add a dependency to `MockK` library.
<tr>
<td><img src="doc/gradle.png" alt="Gradle"/> (Kotlin DSL)</td>
<td>
   <pre>testImplementation("io.mockk:mockk:{version}")</pre>
   <pre>testImplementation("io.mockk:mockk-jvm:{version}")</pre>
</td>
</tr>
<tr>
<td><img src="doc/maven.png" alt="Maven"/></td>
<td>
<pre>&lt;dependency&gt;
&lt;groupId&gt;io.mockk&lt;/groupId&gt;
&lt;artifactId&gt;mockk&lt;/artifactId&gt;
&lt;artifactId&gt;mockk-jvm&lt;/artifactId&gt;
   &lt;version&gt;{version}&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</pre>
Expand All @@ -101,7 +101,7 @@ All you need to get started is just to add a dependency to `MockK` library.
<td><a href="ANDROID.md"><img align="top" src="doc/robot-small.png" height="20" alt="android"/> Unit</a></td>
<td>
<pre>
testImplementation "io.mockk:mockk:{version}"
testImplementation "io.mockk:mockk-android:{version}"
testImplementation "io.mockk:mockk-agent-jvm:{version}"
</pre>
</td>
Expand Down

0 comments on commit 3c78f7c

Please sign in to comment.