129 lines
4.5 KiB
XML
129 lines
4.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>bocloud.cloud.plugin</artifactId>
|
|
<groupId>com.bocloud</groupId>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>bocloud.vmware.plugin</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.vijava</artifactId>
|
|
<version>6.5.1</version>
|
|
</dependency>
|
|
<!--此依赖用来处理vcenter内容库相关功能-->
|
|
<dependency>
|
|
<groupId>com.vmware.vapi</groupId>
|
|
<artifactId>vapi-authentication</artifactId>
|
|
<version>2.14.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vmware</groupId>
|
|
<artifactId>vsphereautomation-client-sdk</artifactId>
|
|
<version>3.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
<version>3.6</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!--pbm start-->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.vmware.pbm</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.vmware.vim25</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vmware.vapi</groupId>
|
|
<artifactId>vapi-runtime</artifactId>
|
|
<version>2.14.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- pbm end -->
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>
|
|
<groupId>jakarta.platform</groupId>
|
|
<artifactId>jakarta.jakartaee-api</artifactId>
|
|
<version>10.0.0</version>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>7.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!--把当前项目所有的依赖打包到target目录下的lib文件夹下 -->
|
|
<plugin>
|
|
<groupId>com.gitee.starblues</groupId>
|
|
<artifactId>spring-brick-maven-packager</artifactId>
|
|
<configuration>
|
|
<mode>${plugin.build.mode}</mode>
|
|
<pluginInfo>
|
|
<id>vmware</id>
|
|
<bootstrapClass>com.bocloud.vmware.plugin.Application</bootstrapClass>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
<provider>vmware</provider>
|
|
<description>vmware纳管插件</description>
|
|
<configFileName>application.yml</configFileName>
|
|
</pluginInfo>
|
|
<prodConfig>
|
|
<packageType>jar</packageType>
|
|
<fileName>${project.artifactId}-${project.version}</fileName>
|
|
</prodConfig>
|
|
<encryptConfig>
|
|
<aes>
|
|
<secretKey>mmfvXes1XckCi8F/y9i0uQ==</secretKey>
|
|
</aes>
|
|
</encryptConfig>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |