pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>picc</artifactId>
  7. <groupId>com.jpsoft</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>picc-common</artifactId>
  12. <properties>
  13. <poi.version>4.1.0</poi.version>
  14. </properties>
  15. <dependencies>
  16. <!-- apache poi -->
  17. <dependency>
  18. <groupId>org.apache.poi</groupId>
  19. <artifactId>poi</artifactId>
  20. <version>${poi.version}</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.poi</groupId>
  25. <artifactId>poi-scratchpad</artifactId>
  26. <version>${poi.version}</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.poi</groupId>
  31. <artifactId>poi-ooxml</artifactId>
  32. <version>${poi.version}</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml-schemas</artifactId>
  38. <version>${poi.version}</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>fr.opensagres.xdocreport</groupId>
  43. <artifactId>xdocreport</artifactId>
  44. <version>1.0.6</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>ooxml-schemas</artifactId>
  50. <version>1.3</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <!-- apache poi end -->
  54. <!-- aliyun oss start -->
  55. <dependency>
  56. <groupId>com.aliyun.oss</groupId>
  57. <artifactId>aliyun-sdk-oss</artifactId>
  58. <version>3.1.0</version>
  59. </dependency>
  60. <!-- aliyun oss end -->
  61. <!-- 阿里大鱼短信jar包 start-->
  62. <dependency>
  63. <groupId>com.taobao</groupId>
  64. <artifactId>taobao-sdk-java</artifactId>
  65. <version>1.0.0</version>
  66. </dependency>
  67. <!-- 阿里大鱼短信jar包 end-->
  68. <!--html转pdf start-->
  69. <dependency>
  70. <groupId>com.itextpdf</groupId>
  71. <artifactId>itextpdf</artifactId>
  72. <version>5.5.13</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.itextpdf</groupId>
  76. <artifactId>itext-asian</artifactId>
  77. <version>5.2.0</version>
  78. </dependency>
  79. <!-- veloctiy -->
  80. <dependency>
  81. <groupId>org.apache.velocity</groupId>
  82. <artifactId>velocity</artifactId>
  83. <version>1.7</version>
  84. </dependency>
  85. <!--service中用到-->
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>LATEST</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>javax.servlet</groupId>
  93. <artifactId>javax.servlet-api</artifactId>
  94. <version>3.1.0</version>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-web</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. </dependencies>
  103. </project>