|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>blade-ops</artifactId>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<version>3.2.0.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>blade-resource</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<version>${bladex.project.version}</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-core-boot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-swagger</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--Oss-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-oss</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--Sms-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-sms</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--Aws S3-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
<artifactId>aws-java-sdk-s3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--MinIO-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--Alioss-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--AliSms-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--华为云Obs-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.huaweicloud</groupId>
|
|
|
|
<artifactId>esdk-obs-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--腾讯COS-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qcloud</groupId>
|
|
|
|
<artifactId>cos_api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--腾讯SMS-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.qcloudsms</groupId>
|
|
|
|
<artifactId>qcloudsms</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--QiNiu-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--YunPian-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.yunpian.sdk</groupId>
|
|
|
|
<artifactId>yunpian-java-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--liteflow-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-liteflow</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-resource-api</artifactId>
|
|
|
|
<version>${bladex.project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-dict-api</artifactId>
|
|
|
|
<version>${bladex.project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.fabric8</groupId>
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>${docker.fabric.skip}</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|