From f58754ecf0f74d53f038424e1e49a77dda1ddf8b Mon Sep 17 00:00:00 2001 From: Marcin Zajaczkowski Date: Sun, 15 May 2016 00:28:52 +0200 Subject: [PATCH] Add snapshot versions to documentation --- docs/src/docs/asciidoc/rest.adoc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/src/docs/asciidoc/rest.adoc b/docs/src/docs/asciidoc/rest.adoc index b956e77f29..27ccbec36a 100644 --- a/docs/src/docs/asciidoc/rest.adoc +++ b/docs/src/docs/asciidoc/rest.adoc @@ -29,6 +29,19 @@ dependencies { } ---- +====== Snapshot versions + +Add the additional snapshot repository to your build.gradle to use snapshot versions which are automatically uploaded after every successful build: + +[source,groovy,indent=0] +---- +repositories { + (...) + //Required only for SNAPSHOT versions + maven { url "https://oss.sonatype.org/content/repositories/snapshots" } +} +---- + ===== Add maven plugin [source,xml,indent=0] @@ -375,4 +388,4 @@ Such tree will cause Accurest generating Wiremock's scenario with name `scenario - logout marked as `Step2` which will close the scenario. More details about Wiremock scenarios can be found under [http://wiremock.org/stateful-behaviour.html](http://wiremock.org/stateful-behaviour.html) -Accurest will also generate tests with guaranteed order of execution. \ No newline at end of file +Accurest will also generate tests with guaranteed order of execution.