1 Star 0 Fork 1

花椒蛋炒饭/hks-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.22 KB
一键复制 编辑 原始数据 按行查看 历史
花椒蛋炒饭 提交于 2022-10-10 19:58 . aop日志整合
<?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>
<packaging>pom</packaging>
<!--子模块-->
<modules>
<module>hks-common</module>
<module>hks-pojo</module>
<module>hks-mapper</module>
<module>hks-service</module>
<module>hks-web</module>
</modules>
<!-- SpringBoot父工程 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
</parent>
<groupId>org.example</groupId>
<artifactId>hks-boot</artifactId>
<version>1.0-SNAPSHOT</version>
<name>hks-boot</name>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!--统一版本-->
<hks.lombok.version>1.18.24</hks.lombok.version>
<hks.spring-boot.test.version>2.7.3</hks.spring-boot.test.version>
<hks.spring-boot.web.version>2.7.3</hks.spring-boot.web.version>
<hks.mysql.connection.version>5.1.49</hks.mysql.connection.version>
<hks.mybatis-plus.version>3.5.2</hks.mybatis-plus.version>
<hks.druid.version>1.2.6</hks.druid.version>
<hks.redis.version>2.7.3</hks.redis.version>
<hks.spring-security.version>2.7.3</hks.spring-security.version>
<hks.spring-boot-aop.version>2.7.3</hks.spring-boot-aop.version>
</properties>
<!--统一依赖管理-->
<dependencyManagement>
<dependencies>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${hks.lombok.version}</version>
<scope>provided</scope>
</dependency>
<!--spring-boot test-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${hks.spring-boot.test.version}</version>
<scope>test</scope>
</dependency>
<!--spring-boot web-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${hks.spring-boot.web.version}</version>
</dependency>
<!--mysql驱动-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${hks.mysql.connection.version}</version>
</dependency>
<!--mybatis-plus-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${hks.mybatis-plus.version}</version>
</dependency>
<!--druid-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${hks.druid.version}</version>
</dependency>
<!--spring security-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>${hks.spring-security.version}</version>
</dependency>
<!--redis-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>${hks.redis.version}</version>
</dependency>
<!--AOP-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>${hks.spring-boot-aop.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/hjdcf/hks-boot.git
[email protected]:hjdcf/hks-boot.git
hjdcf
hks-boot
hks-boot
master

搜索帮助