Files
gen/openapi/csharp.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2017-05-17 10:19:56 -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-csharp</artifactId>
<version>1.0-SNAPSHOT</version>
<name>client-net</name>
<url>http://kubernetes.io</url>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
2021-09-20 09:02:15 -07:00
<configuration>
2022-02-24 14:18:14 -08:00
<!-- do nothing, .net client use compile swagger.json directly -->
<!-- https://github.com/kubernetes-client/csharp/tree/master/gen/LibKubernetesGenerator -->
<executable>true</executable>
2021-09-20 09:02:15 -07:00
</configuration>
2017-05-17 10:19:56 -07:00
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>