hello, how can I add kotlintest snapshot version a...
# kotlintest
t
hello, how can I add kotlintest snapshot version as my dependency? I don't see how to do that in github page.
l
You need to add snapshot repositories to your gradle repositories:
Copy code
maven { url "<https://oss.sonatype.org/content/repositories/snapshots>" }
and then use the snapshot version instead of
3.4.2
for the artifacts
t
is the snapshot version
4.0.0-snapshot
?
and this is the latest on master right?
l
The latest snapshot is listed on github readme (cant link now, on mobile)
Yeah, latest master version
t
Thanks Leonardo!