We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
i think that there is a problem in the pom.xml file, the snippet files are not being included. The cause could be the property in the row 23 that is:
<swagger.snippetOutput.dir>${project.build.directory}/asciidoc/snippets</swagger.snippetOutput.dir>
and the solution should be:
<swagger.snippetOutput.dir>${project.basedir}/build/asciidoc/snippets</swagger.snippetOutput.dir>
This is happening because the annotation AutoConfigureRestDocs of Swagger2MarkupTest.java points to
build/asciidoc/snippets
I have no idea through if this problem is present inside the graddle build too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
i think that there is a problem in the pom.xml file, the snippet files are not being included. The cause could be the property in the row 23 that is:
<swagger.snippetOutput.dir>${project.build.directory}/asciidoc/snippets</swagger.snippetOutput.dir>
and the solution should be:
<swagger.snippetOutput.dir>${project.basedir}/build/asciidoc/snippets</swagger.snippetOutput.dir>
This is happening because the annotation AutoConfigureRestDocs of Swagger2MarkupTest.java points to
build/asciidoc/snippets
I have no idea through if this problem is present inside the graddle build too.
The text was updated successfully, but these errors were encountered: