1 Star 0 Fork 2

林晓飞/qbook

forked from forget/qbook 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.02 KB
一键复制 编辑 原始数据 按行查看 历史
forget 提交于 2020-11-19 20:06 +08:00 . 重新配置使用log4j2日志
<?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 https://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.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>cn.qinwh</groupId>
<artifactId>qbook</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>qbook</name>
<description>qbook</description>
<!-- 模块 -->
<modules>
<module>qbook-common</module>
<module>qbook-system</module>
<module>qbook-app</module>
<module>qbook-admin</module>
</modules>
<properties>
<java.version>1.8</java.version>
<version>0.0.1-SNAPSHOT</version>
<mysql.version>8.0.22</mysql.version>
</properties>
<!-- 统一依赖版本管理 -->
<dependencyManagement>
<dependencies>
<!-- 子模块依赖 -->
<dependency>
<groupId>cn.qinwh</groupId>
<artifactId>qbook-common</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>cn.qinwh</groupId>
<artifactId>qbook-system</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>cn.qinwh</groupId>
<artifactId>qbook-app</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>cn.qinwh</groupId>
<artifactId>qbook-admin</artifactId>
<version>${version}</version>
</dependency>
<!-- mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
<version>${mysql.version}</version>
</dependency>
<!-- 引用阿里巴巴的druid数据源 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.0.31</version>
</dependency>
<!-- mybatis -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
<!-- SpringBoot - MyBatis 逆向工程 -->
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.2</version>
</dependency>
<!-- MyBatis 通用 Mapper -->
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper-spring-boot-starter</artifactId>
<version>1.1.4</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 直接依赖 -->
<dependencies>
<!-- spring-boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<!-- 去掉springboot默认logging配置 -->
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- WEB 模块依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 引入log4j2依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<!-- test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.4.0</version>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/linxiaofei/qbook.git
git@gitee.com:linxiaofei/qbook.git
linxiaofei
qbook
qbook
master

搜索帮助