pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.dromara</groupId>
  8. <artifactId>ruoyi-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <groupId>com.yingpaipay</groupId>
  12. <artifactId>yingpaipay-common-file</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.apache.pdfbox</groupId>
  16. <artifactId>pdfbox</artifactId>
  17. <version>2.0.27</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.itextpdf</groupId>
  21. <artifactId>itext7-core</artifactId>
  22. <version>7.2.5</version>
  23. <type>pom</type>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.docx4j</groupId>
  27. <artifactId>docx4j-core</artifactId>
  28. <version>11.4.9</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi-ooxml</artifactId>
  33. <version>5.2.4</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.twelvemonkeys.imageio</groupId>
  37. <artifactId>imageio-jpeg</artifactId>
  38. <version>3.9.4</version>
  39. </dependency>
  40. </dependencies>
  41. </project>