75 lines
2.8 KiB
XML
75 lines
2.8 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.azure.plugin</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>azure</artifactId>
|
|
<version>1.38.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>azure-storage</artifactId>
|
|
<version>8.6.6</version>
|
|
</dependency>
|
|
<!--azure SDK 认证需要包 -->
|
|
<dependency>
|
|
<groupId>com.nimbusds</groupId>
|
|
<artifactId>oauth2-oidc-sdk</artifactId>
|
|
<version>7.1.1</version>
|
|
</dependency>
|
|
<!--azure SDK 认证需要包 -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</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>azure</id>
|
|
<bootstrapClass>com.bocloud.azure.plugin.Application</bootstrapClass>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
<provider>azure</provider>
|
|
<description>azure纳管插件</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> |