2024-04-01 18:25:16 +08:00
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.3.6.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>guigu-ssyx-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>guigu-ssyx-parent</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
|
|
|
<modules>
|
|
|
|
<module>common</module>
|
|
|
|
<module>model</module>
|
|
|
|
<module>service</module>
|
2024-04-04 16:34:58 +08:00
|
|
|
<module>service-client</module>
|
2024-04-01 18:25:16 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<cloud.version>Hoxton.SR8</cloud.version>
|
|
|
|
<alibaba.version>2.2.2.RELEASE</alibaba.version>
|
|
|
|
<mybatis-plus.version>3.4.1</mybatis-plus.version>
|
|
|
|
<mysql.version>8.0.30</mysql.version>
|
|
|
|
<jwt.version>0.7.0</jwt.version>
|
|
|
|
<fastjson.version>2.0.0</fastjson.version>
|
|
|
|
<httpclient.version>4.5.1</httpclient.version>
|
|
|
|
<easyexcel.version>3.1.0</easyexcel.version>
|
|
|
|
<aliyun.version>4.1.1</aliyun.version>
|
|
|
|
<oss.version>3.9.1</oss.version>
|
|
|
|
<knife4j.version>2.0.8</knife4j.version>
|
|
|
|
<jodatime.version>2.10.1</jodatime.version>
|
|
|
|
<xxl-job.version>2.3.0</xxl-job.version>
|
2024-04-01 21:44:38 +08:00
|
|
|
<minio.version>8.4.3</minio.version>
|
2024-04-01 18:25:16 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<!--配置dependencyManagement锁定依赖的版本-->
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
<version>${cloud.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
<version>${alibaba.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--mybatis-plus 持久层-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
<version>2.0.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>${httpclient.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
<version>${easyexcel.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
<version>${aliyun.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--日期时间工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>${jodatime.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
|
<version>${xxl-job.version}</version>
|
|
|
|
</dependency>
|
2024-04-01 21:44:38 +08:00
|
|
|
<!-- minio -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>4.9.3</version>
|
|
|
|
</dependency>
|
2024-04-04 03:27:33 +08:00
|
|
|
|
|
|
|
<!-- hutool -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>5.8.25</version>
|
|
|
|
</dependency>
|
2024-04-01 18:25:16 +08:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2024-04-02 09:06:35 +08:00
|
|
|
<!-- <repositories> -->
|
|
|
|
<!-- <repository> -->
|
|
|
|
<!-- <id>nexus-aliyun</id> -->
|
|
|
|
<!-- <name>Nexus aliyun</name> -->
|
|
|
|
<!-- <layout>default</layout> -->
|
|
|
|
<!-- <url>https://maven.aliyun.com/repository/public</url> -->
|
|
|
|
<!-- <snapshots> -->
|
|
|
|
<!-- <enabled>false</enabled> -->
|
|
|
|
<!-- </snapshots> -->
|
|
|
|
<!-- <releases> -->
|
|
|
|
<!-- <enabled>true</enabled> -->
|
|
|
|
<!-- </releases> -->
|
|
|
|
<!-- </repository> -->
|
|
|
|
<!-- <repository> -->
|
|
|
|
<!-- <id>spring</id> -->
|
|
|
|
<!-- <url>https://maven.aliyun.com/repository/spring</url> -->
|
|
|
|
<!-- <releases> -->
|
|
|
|
<!-- <enabled>true</enabled> -->
|
|
|
|
<!-- </releases> -->
|
|
|
|
<!-- <snapshots> -->
|
|
|
|
<!-- <enabled>true</enabled> -->
|
|
|
|
<!-- </snapshots> -->
|
|
|
|
<!-- </repository> -->
|
|
|
|
<!-- </repositories> -->
|
2024-04-01 18:25:16 +08:00
|
|
|
</project>
|