25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

pom.xml 2.1 KiB

10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.jeecg</groupId>
  6. <artifactId>easypoi</artifactId>
  7. <version>2.1.6-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>easypoi-base</artifactId>
  10. <dependencies>
  11. <!-- poi -->
  12. <dependency>
  13. <groupId>org.apache.poi</groupId>
  14. <artifactId>poi</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.apache.poi</groupId>
  18. <artifactId>poi-ooxml</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.poi</groupId>
  22. <artifactId>poi-ooxml-schemas</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>xerces</groupId>
  26. <artifactId>xercesImpl</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <!-- Sax 读入的时候使用 -->
  31. <dependency>
  32. <groupId>xerces</groupId>
  33. <artifactId>xercesImpl</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <!-- Word 时候用到 -->
  37. <dependency>
  38. <groupId>org.apache.poi</groupId>
  39. <artifactId>poi-scratchpad</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <!-- PDF -->
  43. <dependency>
  44. <groupId>com.itextpdf</groupId>
  45. <artifactId>itextpdf</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.itextpdf</groupId>
  50. <artifactId>itext-asian</artifactId>
  51. <optional>true</optional>
  52. </dependency>
  53. <!-- google 工具类 -->
  54. <dependency>
  55. <groupId>com.google.guava</groupId>
  56. <artifactId>guava</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. </dependency>
  62. <!--日志 -->
  63. <!-- slf4j -->
  64. <dependency>
  65. <groupId>org.slf4j</groupId>
  66. <artifactId>slf4j-api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.jeecg</groupId>
  70. <artifactId>easypoi-annotation</artifactId>
  71. </dependency>
  72. </dependencies>
  73. </project>