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
No description provided.
The text was updated successfully, but these errors were encountered:
([Tecoble] API 문서 자동화 - Spring REST Docs 팔아보겠습니다)
plugins { id "org.asciidoctor.jvm.convert" version "3.3.2" // (1) } configurations { asciidoctorExt // (2) } dependencies { asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:{project-version}' // (3) testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc:{project-version}' // (4) } ext { snippetsDir = file('build/generated-snippets') // (5) } test { outputs.dir snippetsDir// (6) } asciidoctor { // (7) inputs.dir snippetsDir // (8) configurations 'asciidoctorExt' // (9) dependsOn test // (10) }
spring-restdocs-mockmvc
([spring.io] Spring Rest Docs.Build configuration)
bootJar { dependsOn asciidoctor // (1) from ("${asciidoctor.outputDir}/html5") { // (2) into 'static/docs' } }
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: