swagger-codegen-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wordnik</groupId> <artifactId>swagger-codegen-cli</artifactId> <version>2.1.0-M2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>swagger-codegen-project</artifactId> <groupId>com.wordnik</groupId> <version>2.1.0-M2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>swagger-codegen-cli</artifactId> <name>swagger-codegen (executable)</name> <build> <finalName>swagger-codegen-cli</finalName> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>com.wordnik.swagger.codegen.SwaggerCodegen</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>reduced-pom</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${java.io.tmpdir}/dependency-reduced-pom.xml</dependencyReducedPomLocation> </configuration> </execution> <execution> <id>process-resources</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>