Hi,
Maven puts those Warnings in because the main release of rest assured
has a dependency on a SNAPSHOT version of groovy
If you run:
mvn dependency:tree
You should see this dependency under the rest-assured part.
You can remove this by placing an exclusion on that dependency and
then use a fully released version, as shown below
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>1.5</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.8.3</version>
</dependency>
Hopefully the next version will not have a SNAPSHOT dependency??