|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
<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>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<artifactId>blade-desk</artifactId>
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-core-boot</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-starter-swagger</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-desk-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-user-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-flow-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--Oss-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-starter-oss</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--MinIO-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--QiNiu-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.qiniu</groupId>-->
|
|
|
|
|
<!-- <artifactId>qiniu-java-sdk</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.flowable</groupId>
|
|
|
|
|
<artifactId>flowable-engine</artifactId>
|
|
|
|
|
<version>7.1.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-starter-transaction</artifactId>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- blade excel starter -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-starter-excel</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- blade-job-api -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-job-api</artifactId>
|
|
|
|
|
<version>4.6.0.RELEASE</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 添加Hutool依赖-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>5.8.16</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
|
<artifactId>blade-resource-api</artifactId>
|
|
|
|
|
</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>
|