The following Maven dependency is not getting resolved. Hence, getting compilation failure on some of the references present in SpringRestDocsAPIDocumentationTest.class.
Example: org.springframework.restdocs.response.ResponsePostProcessors
org.springframework.restdocs.RestDocumentation.document;
org.springframework.restdocs.RestDocumentation.documentationConfiguration;
org.springframework.restdocs.RestDocumentation.modifyResponseTo;
org.springframework.restdocs.hypermedia.LinkExtractors.halLinks;
<dependency>
<groupId>org.springframework.restdocs</groupId>
<artifactId>spring-restdocs</artifactId>
<version>1.0.0.M1</version>
<scope>test</scope>
</dependency>
I have tried with the latest Spring REST Docs MockMvc and Spring REST Docs Core libs. The above mentioned classes are not present in these JARs.
Could you please take a look at it and advice?
The following Maven dependency is not getting resolved. Hence, getting compilation failure on some of the references present in SpringRestDocsAPIDocumentationTest.class.
Example: org.springframework.restdocs.response.ResponsePostProcessors
org.springframework.restdocs.RestDocumentation.document;
org.springframework.restdocs.RestDocumentation.documentationConfiguration;
org.springframework.restdocs.RestDocumentation.modifyResponseTo;
org.springframework.restdocs.hypermedia.LinkExtractors.halLinks;
I have tried with the latest Spring REST Docs MockMvc and Spring REST Docs Core libs. The above mentioned classes are not present in these JARs.
Could you please take a look at it and advice?