From c93ad66797e4830ccf4de81c1e8787ab90b22791 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期一, 04 七月 2022 16:07:28 +0800 Subject: [PATCH] 1. 承诺书pdf生产模块 --- pom.xml | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 77065b5..cfa143f 100644 --- a/pom.xml +++ b/pom.xml @@ -28,6 +28,7 @@ <!-- tk.mybatis --> <mapper.plugin>tk.mybatis.mapper.generator.MapperPlugin</mapper.plugin> <mapper.Mapper>tk.mybatis.mapper.common.Mapper</mapper.Mapper> + <itext.version>7.2.2</itext.version> </properties> <dependencies> @@ -267,6 +268,19 @@ <artifactId>poi</artifactId> <version>4.1.2</version> </dependency> + <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>4.1.2</version> + </dependency> + <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-excelant --> +<!-- <dependency>--> +<!-- <groupId>org.apache.poi</groupId>--> +<!-- <artifactId>poi-excelant</artifactId>--> +<!-- <version>5.2.2</version>--> +<!-- </dependency>--> + <!--闃块噷浜戞帹閫�--> <dependency> @@ -289,6 +303,53 @@ <version>3.0</version> </dependency> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-staticdocs</artifactId> + <version>2.6.1</version> + </dependency> + + + <!-- pdf:start --> + <!-- https://mvnrepository.com/artifact/com.itextpdf/itext7-core --> + <dependency> + <groupId>com.itextpdf</groupId> + <artifactId>itext7-core</artifactId> + <version>${itext.version}</version> + <type>pom</type> + </dependency> + <!-- https://mvnrepository.com/artifact/com.itextpdf/html2pdf --> + <dependency> + <groupId>com.itextpdf</groupId> + <artifactId>html2pdf</artifactId> + <version>4.0.2</version> + </dependency> + <!-- https://mvnrepository.com/artifact/com.itextpdf/font-asian --> + <dependency> + <groupId>com.itextpdf</groupId> + <artifactId>font-asian</artifactId> + <version>${itext.version}</version> + <scope>test</scope> + </dependency> + <!-- 鏀寔css鏍峰紡娓叉煋 --> + <dependency> + <groupId>org.xhtmlrenderer</groupId> + <artifactId>flying-saucer-pdf-itext5</artifactId> + <version>9.1.16</version> + </dependency> + <!-- 杞崲html涓烘爣鍑唜html鍖� --> + <dependency> + <groupId>net.sf.jtidy</groupId> + <artifactId>jtidy</artifactId> + <version>r938</version> + </dependency> + <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker --> + <dependency> + <groupId>org.freemarker</groupId> + <artifactId>freemarker</artifactId> + <version>2.3.31</version> + </dependency> + </dependencies> <build> -- Gitblit v1.9.3