Skip to content

Instantly share code, notes, and snippets.

@sonOfRa
Created October 28, 2019 12:27
Show Gist options
  • Save sonOfRa/b657584dba8dd252ca9270020f7cc647 to your computer and use it in GitHub Desktop.
Save sonOfRa/b657584dba8dd252ca9270020f7cc647 to your computer and use it in GitHub Desktop.
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.acme</groupId>
<artifactId>receipts</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>receipts-client</artifactId>
<dependencies>
<dependency>
<groupId>com.acme</groupId>
<artifactId>receipts-spec</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-client</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<inputSpec>receipts.yml</inputSpec>
<language>java</language>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment