From f22c4b9230808fed4fec80c435eccb4c833349a0 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 21 十月 2022 18:36:38 +0800 Subject: [PATCH] 2022.10.21 1.环境守法小程序后台功能首发版本完成 --- pom.xml | 42 +++++++++++++++++++++++++++++------------- 1 files changed, 29 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index 0ea86a3..8cde2c3 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,8 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.3.RELEASE</version> - <relativePath/> <!-- lookup parent from repository --> + <relativePath/> + <!-- lookup parent from repository --> </parent> <properties> @@ -123,6 +124,13 @@ <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.6</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>fastjson</artifactId> + <version>1.2.74</version> </dependency> <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator --> @@ -312,17 +320,23 @@ <!-- 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> +<!-- <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/org.apache.pdfbox/pdfbox --> + <dependency> + <groupId>org.apache.pdfbox</groupId> + <artifactId>pdfbox</artifactId> + <version>2.0.26</version> </dependency> <!-- https://mvnrepository.com/artifact/com.itextpdf/font-asian --> <dependency> @@ -348,6 +362,12 @@ <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.31</version> + </dependency> + <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j --> + <dependency> + <groupId>com.belerweb</groupId> + <artifactId>pinyin4j</artifactId> + <version>2.5.1</version> </dependency> </dependencies> @@ -450,12 +470,8 @@ <resources> <resource> - <filtering>true</filtering> <directory>src/main/resources</directory> -<!-- <includes>--> -<!-- <include>*.xml</include>--> -<!-- <include>*.yml</include>--> -<!-- </includes>--> + <filtering>true</filtering> </resource> </resources> </build> @@ -485,7 +501,7 @@ <repository> <id>alimaven</id> <name>aliyun maven</name> - <url>http://maven.aliyun.com/nexus/content/groups/public/</url> + <url>https://maven.aliyun.com/repository/public</url> </repository> <repository> <id>spring-snapshots</id> -- Gitblit v1.9.3