Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VMware VCF API Specifications
# VCF API Specifications

## Overview

Expand Down
Binary file modified documentation/vsphere/wsdl/pbm/pbm_apiref.zip
Binary file not shown.
Binary file modified documentation/vsphere/wsdl/sms/sms_apiref.zip
Binary file not shown.
Binary file modified documentation/vsphere/wsdl/vim/vim25_api_ref.zip
Binary file not shown.
Binary file modified documentation/vsphere/wsdl/vsan/vsan_apiref.zip
Binary file not shown.
Binary file modified documentation/vsphere/wsdl/vslm/vslm_apiref.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Each sub-folder contains a Maven 3.9-based project which can be used to generate client-side bindings. Use the `mvnw` wrapper to execute the commands below. Replace `sub-project` with the name of one of the root-projects (e.g. vim25).

Note: The source and target compatibility of the bindings are set to Java 11
Note: The source and target compatibility of the bindings are set to Java 17

## Building the bindings

Expand Down
9 changes: 5 additions & 4 deletions scripts/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SPDX-License-Identifier: Apache-2.0-->
<packaging>pom</packaging>

<properties>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.release>17</maven.compiler.release>
<vcf.sdk.groupId>com.vmware.custom_sdk</vcf.sdk.groupId>
<revision>0.0.1</revision>
<wsdl.root>../../../../../specifications/vsphere/wsdl</wsdl.root>
Expand All @@ -39,7 +39,7 @@ SPDX-License-Identifier: Apache-2.0-->
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>3.0.1</version>
<version>4.0.3</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -50,7 +50,7 @@ SPDX-License-Identifier: Apache-2.0-->
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>4.0.9</version>
<version>4.1.7</version>
<executions>
<execution>
<id>generate-bindings</id>
Expand Down Expand Up @@ -101,4 +101,5 @@ SPDX-License-Identifier: Apache-2.0-->
<module>vsphere/wsdl/vslm</module>
</modules>

</project>
</project>

32 changes: 0 additions & 32 deletions scripts/java/vsphere/wsdl/vim25/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,38 +62,6 @@ SPDX-License-Identifier: Apache-2.0-->
</execution>
</executions>
</plugin>
<plugin>
<!--
Using the xml-maven-plugin to add if-exists="true" to all bindings tags of the episode file.
This plugin should be removed once we move to CXF 4.1.0 or above,
as the newer major versions use JAXB 4 where if-exists="true" is added by default.
With the removal of this plugin, add-if-exists.xslt should be deleted as well.
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<version>1.2.0</version>
<executions>
<execution>
<id>transform-episode</id>
<phase>generate-sources</phase>
<goals>
<goal>transform</goal>
</goals>
<configuration>
<transformationSets>
<transformationSet>
<dir>${project.build.directory}</dir>
<includes>
<include>${episode.file.name}</include>
</includes>
<stylesheet>${basedir}/add-if-exists.xslt</stylesheet>
<outputDir>${project.build.directory}</outputDir>
</transformationSet>
</transformationSets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
Loading
Loading