aservo / confapi-commons

Library for common sources of the ASERVO ConfAPI plugins
Apache License 2.0
0 stars 1 forks source link

Improve Swagger Documentation Generation #72

Open pathob opened 4 years ago

pathob commented 4 years ago

Problems

The current documentation does not show

pathob commented 4 years ago
            <plugin>
                <groupId>io.swagger.codegen.v3</groupId>
                <artifactId>swagger-codegen-maven-plugin</artifactId>
                <version>3.0.21</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <inputSpec>${project.build.directory}/openapi.yaml</inputSpec>
                            <language>html</language>
                            <output>${project.basedir}</output>
                        </configuration>
                    </execution>
                </executions>
            </plugin>