forked from rest-assured/rest-assured
-
Notifications
You must be signed in to change notification settings - Fork 2
snapshot
Johan Haleby edited this page Dec 11, 2020
·
40 revisions
In order to try out REST Assured versions before they are released you need to add the following repository in your Maven pom.xml
file:
<repositories>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots />
</repository>
</repositories>
The latest snapshot version usually has the same version number as the latest released version but with an increased patch version. For example, if the latest released version is 4.3.3
then the latest snapshot release should be 4.3.4-SNAPSHOT
.