91 lines
2.5 KiB
XML
91 lines
2.5 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">
|
|
|
|
<parent>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cloud.plugin</artifactId>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>bocloud.bcc.plugin</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>jdk.tools</groupId>
|
|
<artifactId>jdk.tools</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baidubce</groupId>
|
|
<artifactId>bce-java-sdk</artifactId>
|
|
<version>0.10.181</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
<!--httpclient 4.5.2 与 httpcore 4.4.4 更配哦-->
|
|
<version>4.4.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.springframework</groupId>-->
|
|
<!--<artifactId>spring-context</artifactId>-->
|
|
<!--<version>5.3.4</version>-->
|
|
<!--<scope>compile</scope>-->
|
|
<!--</dependency>-->
|
|
<!--<dependency>-->
|
|
<!--<groupId>com.bocloud</groupId>-->
|
|
<!--<artifactId>bocloud.cmp.booter</artifactId>-->
|
|
<!--<version>6.5.0-LTS-SZ</version>-->
|
|
<!--<!–<scope>provided</scope>–>-->
|
|
<!--</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>bcc</id>
|
|
<bootstrapClass>com.bocloud.bcc.plugin.Application</bootstrapClass>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
<provider>bcc</provider>
|
|
<description>百度云纳管插件</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> |