46 lines
2.6 KiB
XML
46 lines
2.6 KiB
XML
<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>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<inputSpec>${generator.spec.path}</inputSpec>
|
|
<generatorName>haskell-http-client</generatorName>
|
|
<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>
|
|
<configOptions>
|
|
<packageName>${generator.package.name}</packageName>
|
|
<packageVersion>${generator.client.version}</packageVersion>
|
|
<allowNonUniqueOperationIds>true</allowNonUniqueOperationIds>
|
|
<cabalPackage>kubernetes-client-core</cabalPackage>
|
|
<baseModule>Kubernetes.OpenAPI</baseModule>
|
|
<requestType>KubernetesRequest</requestType>
|
|
<configType>KubernetesClientConfig</configType>
|
|
<customTestInstanceModule>CustomInstances</customTestInstanceModule>
|
|
<dateTimeFormat>%FT%T%6QZ</dateTimeFormat>
|
|
<dateTimeParseFormat>%FT%T%QZ</dateTimeParseFormat>
|
|
<queryExtraUnreserved>+</queryExtraUnreserved>
|
|
</configOptions>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|