Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pom.xml 2.3 KiB

10 år sedan
10 år sedan
10 år sedan
10 år sedan
10 år sedan
10 år sedan
10 år sedan
10 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>cn.afterturn</groupId>
  6. <artifactId>easypoi</artifactId>
  7. <version>3.0.1-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. <!-- 处理Excel -->
  54. <dependency>
  55. <groupId>org.jsoup</groupId>
  56. <artifactId>jsoup</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <!-- google 工具类 -->
  60. <dependency>
  61. <groupId>com.google.guava</groupId>
  62. <artifactId>guava</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-lang3</artifactId>
  67. </dependency>
  68. <!--日志 -->
  69. <!-- slf4j -->
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.validation</groupId>
  76. <artifactId>validation-api</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cn.afterturn</groupId>
  80. <artifactId>easypoi-annotation</artifactId>
  81. </dependency>
  82. </dependencies>
  83. </project>