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

46 lines
2.6 KiB
XML
Raw Permalink 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>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${openapi-generator-version}</version>
2017-12-15 06:34:15 +00:00
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${generator.spec.path}</inputSpec>
<generatorName>haskell-http-client</generatorName>
2017-12-15 06:34:15 +00:00
<output>${generator.output.path}</output>
<skipValidateSpec>true</skipValidateSpec>
<typeMappings>intstr.IntOrString=IntOrString,resource.Quantity=Quantity</typeMappings>
<importMappings>IntOrString=Kubernetes.OpenAPI.CustomTypes,Quantity=Kubernetes.OpenAPI.CustomTypes</importMappings>
2017-12-15 06:34:15 +00:00
<configOptions>
<packageName>${generator.package.name}</packageName>
<packageVersion>${generator.client.version}</packageVersion>
2018-01-11 08:11:39 +00:00
<allowNonUniqueOperationIds>true</allowNonUniqueOperationIds>
<cabalPackage>kubernetes-client-core</cabalPackage>
<baseModule>Kubernetes.OpenAPI</baseModule>
2019-02-08 14:52:31 -08:00
<requestType>KubernetesRequest</requestType>
<configType>KubernetesClientConfig</configType>
<customTestInstanceModule>CustomInstances</customTestInstanceModule>
<dateTimeFormat>%FT%T%6QZ</dateTimeFormat>
<dateTimeParseFormat>%FT%T%QZ</dateTimeParseFormat>
<queryExtraUnreserved>+</queryExtraUnreserved>
2017-12-15 06:34:15 +00:00
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>