2021-11-19 09:10:52 -08:00
|
|
|
<project
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2017-06-13 22:42:44 -07:00
|
|
|
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</artifactId>
|
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
|
<name>client-typescript</name>
|
|
|
|
|
<url>http://kubernetes.io</url>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2019-07-23 16:36:15 -07:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
|
|
|
|
<version>${openapi-generator-version}</version>
|
2017-06-13 22:42:44 -07:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>generate</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<inputSpec>${generator.spec.path}</inputSpec>
|
2019-07-23 16:36:15 -07:00
|
|
|
<skipValidateSpec>true</skipValidateSpec>
|
2022-02-03 12:15:46 -05:00
|
|
|
<generatorName>typescript</generatorName>
|
2021-11-19 09:10:52 -08:00
|
|
|
<importMappings>
|
2022-06-29 06:59:34 +09:00
|
|
|
IntOrString=../../types,V1MicroTime=../../types
|
2021-11-19 09:10:52 -08:00
|
|
|
</importMappings>
|
2019-07-23 16:36:15 -07:00
|
|
|
<output>${generator.output.path}</output>
|
2017-06-13 22:42:44 -07:00
|
|
|
<configOptions>
|
|
|
|
|
<sortParamsByRequiredFlag>true</sortParamsByRequiredFlag>
|
2019-07-23 16:36:15 -07:00
|
|
|
<supportsES6>true</supportsES6>
|
2022-02-03 12:15:46 -05:00
|
|
|
<useObjectParameters>true</useObjectParameters>
|
|
|
|
|
<platform>node</platform>
|
|
|
|
|
<framework>fetch-api</framework>
|
2017-06-13 22:42:44 -07:00
|
|
|
<npmName>kubernetes-client-typescript</npmName>
|
|
|
|
|
<npmVersion>${generator.client.version}</npmVersion>
|
2019-07-24 01:40:15 +02:00
|
|
|
<modelPropertyNaming>original</modelPropertyNaming>
|
2024-12-03 18:31:00 -05:00
|
|
|
<importFileExtension>.js</importFileExtension>
|
2017-06-13 22:42:44 -07:00
|
|
|
</configOptions>
|
2022-06-29 06:59:34 +09:00
|
|
|
<typeMappings>int-or-string=IntOrString,date-time-micro=V1MicroTime</typeMappings>
|
2017-06-13 22:42:44 -07:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|
|
|
|
|
|