1 Star 0 Fork 17

excellent-project-collection/geshanzsq-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 11.26 KB
一键复制 编辑 原始数据 按行查看 历史
<?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.geshanzsq</groupId>
<artifactId>geshanzsq-blog</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<description>格姗知识圈博客网站</description>
<modules>
<module>geshanzsq-blog-admin</module>
<module>geshanzsq-blog-common</module>
<module>geshanzsq-blog-client</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.plugin.version>3.10.1</maven.compiler.plugin.version>
<geshanzsq.blog.common.core.version>1.0.0</geshanzsq.blog.common.core.version>
<geshanzsq.blog.common.limiter.version>1.0.0</geshanzsq.blog.common.limiter.version>
<geshanzsq.blog.common.redis.version>1.0.0</geshanzsq.blog.common.redis.version>
<geshanzsq.blog.common.swagger.version>1.0.0</geshanzsq.blog.common.swagger.version>
<geshanzsq.blog.common.log.version>1.0.0</geshanzsq.blog.common.log.version>
<geshanzsq.blog.common.security.version>1.0.0</geshanzsq.blog.common.security.version>
<geshanzsq.blog.common.framework.version>1.0.0</geshanzsq.blog.common.framework.version>
<geshanzsq.blog.admin.system.version>1.0.0</geshanzsq.blog.admin.system.version>
<geshanzsq.blog.admin.system.common.version>1.0.0</geshanzsq.blog.admin.system.common.version>
<geshanzsq.blog.client.common.version>1.0.0</geshanzsq.blog.client.common.version>
<spring.boot.version>2.3.12.RELEASE</spring.boot.version>
<knife4j.version>3.0.3</knife4j.version>
<mybatis.plus.version>3.5.2</mybatis.plus.version>
<fastjson.version>1.2.79</fastjson.version>
<mapstruct.version>1.5.0.RC1</mapstruct.version>
<lombok.version>1.18.22</lombok.version>
<pagehelper.version>1.4.1</pagehelper.version>
<easy.captcha.version>1.6.2</easy.captcha.version>
<commons.pool2.version>2.11.1</commons.pool2.version>
<bitwalker.version>1.21</bitwalker.version>
<hutool.all.version>5.8.5</hutool.all.version>
<commons.io.version>2.11.0</commons.io.version>
<flexmark.version>0.62.2</flexmark.version>
<just.auth.version>1.16.5</just.auth.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 通用核心模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-core</artifactId>
<version>${geshanzsq.blog.common.core.version}</version>
</dependency>
<!-- 通用限流模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-limiter</artifactId>
<version>${geshanzsq.blog.common.limiter.version}</version>
</dependency>
<!-- 通用缓存模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-redis</artifactId>
<version>${geshanzsq.blog.common.redis.version}</version>
</dependency>
<!-- 日志模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-log</artifactId>
<version>${geshanzsq.blog.common.log.version}</version>
</dependency>
<!-- 安全认证模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-security</artifactId>
<version>${geshanzsq.blog.common.security.version}</version>
</dependency>
<!-- 通用接口文档模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-swagger</artifactId>
<version>${geshanzsq.blog.common.swagger.version}</version>
</dependency>
<!-- 通用框架模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-common-framework</artifactId>
<version>${geshanzsq.blog.common.framework.version}</version>
</dependency>
<!-- 系统模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-admin-system</artifactId>
<version>${geshanzsq.blog.admin.system.version}</version>
</dependency>
<!-- 系统通用模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-admin-system-common</artifactId>
<version>${geshanzsq.blog.admin.system.common.version}</version>
</dependency>
<!-- 客户端通用模块 -->
<dependency>
<groupId>com.geshanzsq</groupId>
<artifactId>geshanzsq-blog-client-common</artifactId>
<version>${geshanzsq.blog.client.common.version}</version>
</dependency>
<!-- spring boot-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- knife4j 接口文档 -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>${knife4j.version}</version>
</dependency>
<!-- MyBatis Plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis.plus.version}</version>
</dependency>
<!-- 阿里 JSO N解析器 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<!-- MapStruct 对象转换 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<!-- PageHelper 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper.version}</version>
</dependency>
<!-- easy-captcha 验证码 -->
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
<version>${easy.captcha.version}</version>
</dependency>
<!-- 使用 Redis 缓存需要引用 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${commons.pool2.version}</version>
</dependency>
<!-- 解析客户端操作系统、浏览器等 -->
<dependency>
<groupId>eu.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>${bitwalker.version}</version>
</dependency>
<!-- aop 切面 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<!-- huTool 工具 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.all.version}</version>
</dependency>
<!-- io 常用工具类 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<!-- Markdown 转 Html -->
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-all</artifactId>
<version>${flexmark.version}</version>
</dependency>
<!--表格渲染插件-->
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-tables</artifactId>
<version>${flexmark.version}</version>
</dependency>
<!-- JustAuth 第三方登录模块-->
<dependency>
<groupId>me.zhyd.oauth</groupId>
<artifactId>JustAuth</artifactId>
<version>${just.auth.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<!-- 解决 Lombok + MapStruct 组合 -->
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/excellent-project-collection/geshanzsq-blog.git
git@gitee.com:excellent-project-collection/geshanzsq-blog.git
excellent-project-collection
geshanzsq-blog
geshanzsq-blog
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385