12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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">
- <parent>
- <artifactId>zhongzheng</artifactId>
- <groupId>com.zhongzheng</groupId>
- <version>3.4.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>zhongzheng-system</artifactId>
- <description>
- system系统模块
- </description>
- <repositories>
- <repository>
- <id>mvnrepository</id>
- <name>mvnrepository</name>
- <url>https://mvnrepository.com</url>
- </repository>
- </repositories>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.zhongzheng</groupId>
- <artifactId>zhongzheng-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- <dependency>
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-core</artifactId>
- <version>0.0.1-RC9</version>
- </dependency>
- <!--导出pdf所需包-->
- <!--itext5-->
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- <version>5.5.13</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itext-asian</artifactId>
- <version>5.2.0</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf.tool</groupId>
- <artifactId>xmlworker</artifactId>
- <version>5.5.11</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- </dependencies>
- </project>
|