2021-08-07 08:15:29 -07: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-typescript-fetch</artifactId>
|
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
|
<name>client-typescript-fetch</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>
|
|
|
|
|
<skipValidateSpec>true</skipValidateSpec>
|
|
|
|
|
<generatorName>typescript-fetch</generatorName>
|
|
|
|
|
<output>${generator.output.path}</output>
|
|
|
|
|
<configOptions>
|
|
|
|
|
<sortParamsByRequiredFlag>true</sortParamsByRequiredFlag>
|
|
|
|
|
<supportsES6>true</supportsES6>
|
2021-12-14 17:44:50 -05:00
|
|
|
<typescriptThreePlus>true</typescriptThreePlus>
|
2021-08-07 08:15:29 -07:00
|
|
|
<prefixParameterInterfaces>true</prefixParameterInterfaces>
|
|
|
|
|
<npmName>kubernetes-client-typescript-fetch</npmName>
|
|
|
|
|
<npmVersion>${generator.client.version}</npmVersion>
|
|
|
|
|
<modelPropertyNaming>original</modelPropertyNaming>
|
|
|
|
|
</configOptions>
|
2022-12-05 08:59:05 -08:00
|
|
|
<typeMappings>int-or-string=IntOrString</typeMappings>
|
2021-08-07 08:15:29 -07:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|
|
|
|
|
|