|
@@ -0,0 +1,181 @@
|
|
|
+<?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>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.5.14</version>
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <groupId>org.example</groupId>
|
|
|
+ <artifactId>fdkk_bim</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <tlog-all-spring-boot-starter.version>1.4.3</tlog-all-spring-boot-starter.version>
|
|
|
+ <forest-spring-boot-starter.version>1.5.26</forest-spring-boot-starter.version>
|
|
|
+ <fastjson.version>2.0.6</fastjson.version>
|
|
|
+ <aliyun-sdk-oss.version>3.8.0</aliyun-sdk-oss.version>
|
|
|
+ <minio.version>8.2.2</minio.version>
|
|
|
+ <druid.version>1.2.11</druid.version>
|
|
|
+ <pagehelper.boot.version>1.3.1</pagehelper.boot.version>
|
|
|
+
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- redis 缓存操作 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.redisson</groupId>
|
|
|
+ <artifactId>redisson</artifactId>
|
|
|
+ <version>3.16.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 引入redis连接池的依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- fastjson start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.fastjson2</groupId>
|
|
|
+ <artifactId>fastjson2</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- fastjson end -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.7.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.7.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>3.5.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fdkankan</groupId>
|
|
|
+ <artifactId>4dkankan-utils-fyun-oss</artifactId>
|
|
|
+ <version>3.0.0-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fdkankan</groupId>
|
|
|
+ <artifactId>4dkankan-utils-redis</artifactId>
|
|
|
+ <version>3.0.0-SNAPSHOT</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.redisson</groupId>
|
|
|
+ <artifactId>redisson</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <!-- pagehelper 分页插件 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>${pagehelper.boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.16.18</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.dtflys.forest</groupId>
|
|
|
+ <artifactId>forest-spring-boot-starter</artifactId>
|
|
|
+ <version>${forest-spring-boot-starter.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.yomahub</groupId>
|
|
|
+ <artifactId>tlog-all-spring-boot-starter</artifactId>
|
|
|
+ <version>${tlog-all-spring-boot-starter.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <!-- jsoup HTML parser library @ https://jsoup.org/ -->
|
|
|
+ <groupId>org.jsoup</groupId>
|
|
|
+ <artifactId>jsoup</artifactId>
|
|
|
+ <version>1.15.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
+ <version>${aliyun-sdk-oss.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.minio</groupId>
|
|
|
+ <artifactId>minio</artifactId>
|
|
|
+ <version>${minio.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>okio</artifactId>
|
|
|
+ <groupId>com.squareup.okio</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>2.1.1.RELEASE</version>
|
|
|
+ <configuration>
|
|
|
+ <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <!--加入maven插件“docker-maven-plugin”-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>docker-maven-plugin</artifactId>
|
|
|
+ <version>0.4.11</version>
|
|
|
+ <configuration>
|
|
|
+ <imageName>IMG-BED/${project.artifactId}</imageName>
|
|
|
+ <dockerDirectory>src/main/docker</dockerDirectory>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <targetPath>/</targetPath>
|
|
|
+ <directory>${project.build.directory}</directory>
|
|
|
+ <include>${project.build.finalName}.jar</include>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|