83 lines
2.3 KiB
XML
83 lines
2.3 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cloud.plugin</artifactId>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
</parent>
|
|
<artifactId>bocloud.zstack.plugin</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.zstack</groupId>
|
|
<artifactId>zstack.sdk</artifactId>
|
|
<version>4.2.48</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>3.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.9</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>zstack</id>
|
|
<bootstrapClass>com.bocloud.zstack.plugin.ZStackPlugin</bootstrapClass>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
<provider>zstack</provider>
|
|
<description>ZStack纳管插件</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> |