pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>zhongzheng</artifactId>
  7. <groupId>com.zhongzheng</groupId>
  8. <version>3.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zhongzheng-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <repositories>
  16. <repository>
  17. <id>mvnrepository</id>
  18. <name>mvnrepository</name>
  19. <url>https://mvnrepository.com</url>
  20. </repository>
  21. </repositories>
  22. <dependencies>
  23. <!-- 通用工具-->
  24. <dependency>
  25. <groupId>com.zhongzheng</groupId>
  26. <artifactId>zhongzheng-common</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-freemarker</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.openhtmltopdf</groupId>
  34. <artifactId>openhtmltopdf-core</artifactId>
  35. <version>0.0.1-RC9</version>
  36. </dependency>
  37. <!--导出pdf所需包-->
  38. <!--itext5-->
  39. <dependency>
  40. <groupId>com.itextpdf</groupId>
  41. <artifactId>itextpdf</artifactId>
  42. <version>5.5.13</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.itextpdf</groupId>
  46. <artifactId>itext-asian</artifactId>
  47. <version>5.2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.itextpdf.tool</groupId>
  51. <artifactId>xmlworker</artifactId>
  52. <version>5.5.11</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.github.xiaoymin</groupId>
  56. <artifactId>knife4j-spring-boot-starter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-test</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-freemarker</artifactId>
  65. </dependency>
  66. </dependencies>
  67. </project>