Generate java classes using swagger and yaml
问题 I would to generate my Java classes using the maven plugin swagger-codegen-maven-plugin version 2.2.3 . Here my pom.xml file with the configuration: <plugin> <groupId>io.swagger</groupId> <artifactId>swagger-codegen-maven-plugin</artifactId> <version>2.2.3</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${basedir}/src/main/resources/swagger/project.yaml</inputSpec> <language>java</language> <configOptions> <sourceFolder>src/gen/java/main<