145 lines
5.8 KiB
XML
145 lines
5.8 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.bwie</groupId>
|
|
<artifactId>day15-1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>bwie-common</module>
|
|
<module>bwie-auth</module>
|
|
<module>bwie-api</module>
|
|
<module>bwie-gateway</module>
|
|
<module>bwie-modules</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spring-boot.version>2.6.2</spring-boot.version>
|
|
<spring-cloud.version>2021.0.0</spring-cloud.version>
|
|
<spring-cloud-alibaba.version>2021.1</spring-cloud-alibaba.version>
|
|
<nacos-client.version>2.0.4</nacos-client.version>
|
|
<bwie-common.version>1.0-SNAPSHOT</bwie-common.version>
|
|
<jjwt.version>0.9.1</jjwt.version>
|
|
<fastjson.version>1.2.80</fastjson.version>
|
|
<hutool-all.version>5.8.3</hutool-all.version>
|
|
<dysmsapi.version>2.0.1</dysmsapi.version>
|
|
<druid.version>1.2.8</druid.version>
|
|
<mybatis.version>2.2.2</mybatis.version>
|
|
<pagehelper.version>1.4.1</pagehelper.version>
|
|
</properties>
|
|
|
|
<!-- 依赖声明 -->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- SpringBoot 依赖配置 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- SpringCloud 微服务 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- SpringCloud Alibaba 微服务 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
<version>${spring-cloud-alibaba.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- Alibaba Nacos 配置 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
<artifactId>nacos-client</artifactId>
|
|
<version>${nacos-client.version}</version>
|
|
</dependency>
|
|
<!-- 公共模块 -->
|
|
<dependency>
|
|
<groupId>com.bwie</groupId>
|
|
<artifactId>bwie-common</artifactId>
|
|
<version>${bwie-common.version}</version>
|
|
</dependency>
|
|
<!-- JWT -->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
</dependency>
|
|
<!-- Alibaba Fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<!-- hutool -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool-all.version}</version>
|
|
</dependency>
|
|
<!-- 阿里大鱼 -->
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
<version>${dysmsapi.version}</version>
|
|
</dependency>
|
|
<!-- Druid -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
<!-- Mybatis 依赖配置 -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis.version}</version>
|
|
</dependency>
|
|
<!-- Pagehelper -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.version}</version>
|
|
</dependency>
|
|
<!-- servlet -api -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
<!-- 系统远程模块 -->
|
|
<dependency>
|
|
<groupId>com.bwie</groupId>
|
|
<artifactId>bwie-system-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- 公共核心模块 -->
|
|
<dependency>
|
|
<groupId>com.bwie</groupId>
|
|
<artifactId>bwie-common-core</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bwie</groupId>
|
|
<artifactId>bwie-common-log</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|