143 lines
4.5 KiB
XML
143 lines
4.5 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">
|
||
<parent>
|
||
<artifactId>ruoyi</artifactId>
|
||
<groupId>com.ruoyi</groupId>
|
||
<version>3.3.0</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>com.xjs</groupId>
|
||
<artifactId>xjs-business</artifactId>
|
||
<packaging>pom</packaging>
|
||
<description>业务模块</description>
|
||
<name>业务模块</name>
|
||
<modules>
|
||
<module>xjs-business-openapi</module>
|
||
<module>xjs-business-english</module>
|
||
<module>xjs-business-common</module>
|
||
<module>xjs-business-warning</module>
|
||
<module>xjs-business-monitor</module>
|
||
<module>xjs-business-log</module>
|
||
<module>xjs-business-statistics</module>
|
||
<module>xjs-business-webmagic</module>
|
||
<module>xjs-project-srb</module>
|
||
<module>xjs-project-mall</module>
|
||
<module>xjs-business-workflow</module>
|
||
<module>xjs-project-blog</module>
|
||
<module>xjs-project-exam</module>
|
||
</modules>
|
||
|
||
<properties>
|
||
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- SpringCloud Alibaba Nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos Config -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Sentinel -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringBoot Actuator -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Swagger UI -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>${swagger.fox.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Mysql Connector -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common DataSource -->
|
||
<dependency>
|
||
<groupId>com.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-datasource</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common DataScope -->
|
||
<dependency>
|
||
<groupId>com.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-datascope</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common Log -->
|
||
<dependency>
|
||
<groupId>com.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-log</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common Swagger -->
|
||
<dependency>
|
||
<groupId>com.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-swagger</artifactId>
|
||
</dependency>
|
||
|
||
<!--/////////////////////本模块专属依赖/////////////////////////-->
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<!--lombok-->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</dependency>
|
||
|
||
<!--测试-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
</dependency>
|
||
|
||
<!--工具类-->
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
</dependency>
|
||
|
||
<!--比 MyBatis 效率快 100 倍的条件检索引擎,天生支持联表,使一行代码实现复杂列表检索成为可能!-->
|
||
<dependency>
|
||
<groupId>com.ejlchina</groupId>
|
||
<artifactId>bean-searcher-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
|
||
|
||
<!--热部署、有毒,一加上redis就出问题 -->
|
||
<!--<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-devtools</artifactId>
|
||
</dependency>-->
|
||
|
||
|
||
</dependencies>
|
||
|
||
</project>
|