使用TestNG的Spring Boot不会生成HTML文件

时间:2018-04-02 00:45:08

标签: spring-boot testng spring-restdocs

我有一个Spring Boot应用程序,其中TestNG作为单元测试框架。参考Spring TestNg Sample

的接线

ascii医生的My Pom Snippet看起来像:

<plugin>
            <groupId>org.asciidoctor</groupId>
            <artifactId>asciidoctor-maven-plugin</artifactId>
            <version>1.5.6</version>
            <executions>
                <execution>
                    <id>generate-docs</id>
                    <phase>package</phase>
                    <goals>
                        <goal>process-asciidoc</goal>
                    </goals>
                    <configuration>
                        <backend>html</backend>
                        <doctype>book</doctype>
                        <attributes>
                            <snippets>${snippetsDirectory}</snippets>
                        </attributes>
                        <sourceDirectory>src/docs/asciidocs</sourceDirectory>
                        <outputDirectory>target/generated-docs</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>

我有pom中包含的神器spring-restdocs-mockmvc。我在目标/生成片段中看到了6个小的adoc片段,但没有看到任何html文件。

阅读相关的StackOver Thread并在src / docs / ascii-docs中手动添加了api-guide.adoc文件,但仍然没有看到任何html文件:(

我确实浏览了许多教程/示例帖子,但无济于事。

0 个答案:

没有答案