1 Star 0 Fork 3

matthew/springboot-code-book

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.13 KB
一键复制 编辑 原始数据 按行查看 历史
cyx 提交于 2022-12-30 18:00 . [新增][netty study]
<?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>
<name>springboot-code-book</name>
<modules>
<module>bigfile-up-down</module>
<module>jsoup-study</module>
<module>export-pdf</module>
<module>netty-study</module>
</modules>
<groupId>org.cyx</groupId>
<artifactId>springboot-code-book</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- 父工程 -->
<parent>
<artifactId>spring-boot-starter-parent</artifactId>
<groupId>org.springframework.boot</groupId>
<version>2.6.5</version>
</parent>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<mp.version>3.4.3</mp.version>
<druid.version>1.2.4</druid.version>
<hutool.version>5.5.8</hutool.version>
<commons.fileupload.version>1.3.3</commons.fileupload.version>
<commons.io.version>2.5</commons.io.version>
<jsoup.version>1.10.2</jsoup.version>
<fastjson.version>1.2.74</fastjson.version>
<html2pdf.version>3.0.4</html2pdf.version>
<poi.version>4.1.2</poi.version>
<netty.version>4.1.68.Final</netty.version>
<gson.version>2.8.5</gson.version>
<guava.version>19.0</guava.version>
</properties>
<!-- 依赖统一管理 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mp.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${commons.fileupload.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>html2pdf</artifactId>
<version>${html2pdf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Matthew_99/springboot-code-book.git
git@gitee.com:Matthew_99/springboot-code-book.git
Matthew_99
springboot-code-book
springboot-code-book
master

搜索帮助