lcm-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.nutanix.api</groupId> <artifactId>lcm-java-client</artifactId> <version>4.0.1-alpha-1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.nutanix.api</groupId> <artifactId>lcm-java-client</artifactId> <name>lcm Java Client</name> <description>Manage Infrastructure, Software and Firmware Upgrades.</description> <url>https://github.com/nutanix/ntnx-api-java-clients/blob/main/lcm/README.md</url> <version>4.0.1-alpha-1</version> <packaging>jar</packaging> <organization> <name>Nutanix</name> <url>https://www.nutanix.com/</url> </organization> <licenses> <license> <name>Nutanix SDK License</name> <url>https://developers.nutanix.com/license</url> <distribution>repo</distribution> <comments>Nutanix license for SDK usage </comments> </license> </licenses> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <openapi-dev-platform.version>1.13.4933-RELEASE</openapi-dev-platform.version> <platform-tools.version>1.0.116-RELEASE</platform-tools.version> <swagger-codegen.version>3.0.10</swagger-codegen.version> <api.defs>lcm-api-definitions</api.defs> </properties> <developers> <developer> <name>Nutanix SDK Team</name> <email>sdk@nutanix.com</email> <organization>Nutanix</organization> <organizationUrl>https://www.nutanix.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:nutanix/ntnx-api-java-clients.git</connection> <url>https://github.com/nutanix/ntnx-api-java-clients/</url> </scm> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.8.RELEASE</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.10.5</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.5</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.13.3</version> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> <version>1.2.5.RELEASE</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.11</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>2.2.9.RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.swagger.codegen.v3</groupId> <artifactId>swagger-codegen-maven-plugin</artifactId> <version>${swagger-codegen.version}</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${yamlOutputDir}/swagger-lcm-all.yaml</inputSpec> <language>com.nutanix.swagger.codegen.generators.JavaClientSDKGenerator</language> <generateSupportingFiles>true</generateSupportingFiles> <generateModels>true</generateModels> <generateModelDocumentation>false</generateModelDocumentation> <generateModelTests>false</generateModelTests> <generateApiTests>false</generateApiTests> <generateApis>true</generateApis> <generateApiDocumentation>false</generateApiDocumentation> <additionalProperties> <additionalProperty>manifestFilePath=${yamlOutputDir}/api-manifest.json</additionalProperty> <additionalProperty>enableSelfContainedPackaging=true</additionalProperty> <additionalProperty>exposeInternalComponents=${expose.internal.api}</additionalProperty> </additionalProperties> <configOptions> <dateLibrary>java8</dateLibrary> </configOptions> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.nutanix.nutanix-core.ntnx-api.dev-platform</groupId> <artifactId>dev-platform-codegen-templates</artifactId> <version>${openapi-dev-platform.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/swagger/src</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <configuration> <show>public</show> <failOnError>false</failOnError> </configuration> <executions> <execution> <phase>prepare-package</phase> <id>generate-documentation</id> <goals> <goal>javadoc</goal> </goals> <configuration> <doctitle>LCM 4.0.1-alpha-1 Java Client</doctitle> <excludePackageNames>*.deserializers:*.models:*.serializers:*.annotations</excludePackageNames> </configuration> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>github-pkg</id> <url>${GITHUB_PKG_URI}</url> </repository> </distributionManagement> </project>