Files
gen/openapi/haskell-http-client.xml

35 lines
1.6 KiB
XML
Raw Normal View History

2017-12-15 06:34:15 +00:00
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-haskell</artifactId>
<version>1.0-SNAPSHOT</version>
<name>client-haskell</name>
<url>http://kubernetes.io</url>
<build>
<plugins>
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>${swagger-codegen-version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${generator.spec.path}</inputSpec>
<language>haskell-http-client</language>
<output>${generator.output.path}</output>
<configOptions>
<packageName>${generator.package.name}</packageName>
<packageVersion>${generator.client.version}</packageVersion>
2018-01-11 08:11:39 +00:00
<allowNonUniqueOperationIds>true</allowNonUniqueOperationIds>
2017-12-15 06:34:15 +00:00
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>