pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <fastjson.version>1.2.29</fastjson.version>
  15. </properties>
  16. <dependencies>
  17. <!-- apache poi -->
  18. <dependency>
  19. <groupId>org.apache.poi</groupId>
  20. <artifactId>poi</artifactId>
  21. <version>${poi.version}</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.poi</groupId>
  26. <artifactId>poi-scratchpad</artifactId>
  27. <version>${poi.version}</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi-ooxml</artifactId>
  33. <version>${poi.version}</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.poi</groupId>
  38. <artifactId>poi-ooxml-schemas</artifactId>
  39. <version>${poi.version}</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>fr.opensagres.xdocreport</groupId>
  44. <artifactId>xdocreport</artifactId>
  45. <version>1.0.6</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>ooxml-schemas</artifactId>
  51. <version>1.3</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <!-- apache poi end -->
  55. <!-- aliyun oss start -->
  56. <dependency>
  57. <groupId>com.aliyun.oss</groupId>
  58. <artifactId>aliyun-sdk-oss</artifactId>
  59. <version>3.1.0</version>
  60. </dependency>
  61. <!-- aliyun oss end -->
  62. <!-- 阿里大鱼短信jar包 start-->
  63. <dependency>
  64. <groupId>com.taobao</groupId>
  65. <artifactId>taobao-sdk-java</artifactId>
  66. <version>1.0.0</version>
  67. </dependency>
  68. <!-- 阿里大鱼短信jar包 end-->
  69. <!--html转pdf start-->
  70. <dependency>
  71. <groupId>com.itextpdf</groupId>
  72. <artifactId>itextpdf</artifactId>
  73. <version>5.5.13</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.itextpdf</groupId>
  77. <artifactId>itext-asian</artifactId>
  78. <version>5.2.0</version>
  79. </dependency>
  80. <!-- PDF转图片 -->
  81. <dependency>
  82. <groupId>org.apache.pdfbox</groupId>
  83. <artifactId>fontbox</artifactId>
  84. <version>2.0.9</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.pdfbox</groupId>
  88. <artifactId>pdfbox</artifactId>
  89. <version>2.0.9</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-logging</groupId>
  93. <artifactId>commons-logging</artifactId>
  94. <version>1.2</version>
  95. </dependency>
  96. <!-- veloctiy -->
  97. <dependency>
  98. <groupId>org.apache.velocity</groupId>
  99. <artifactId>velocity</artifactId>
  100. <version>1.7</version>
  101. </dependency>
  102. <!--service中用到-->
  103. <dependency>
  104. <groupId>com.github.pagehelper</groupId>
  105. <artifactId>pagehelper-spring-boot-starter</artifactId>
  106. <version>LATEST</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>javax.servlet</groupId>
  110. <artifactId>javax.servlet-api</artifactId>
  111. <version>3.1.0</version>
  112. <scope>provided</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework</groupId>
  116. <artifactId>spring-web</artifactId>
  117. <scope>compile</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>joda-time</groupId>
  121. <artifactId>joda-time</artifactId>
  122. </dependency>
  123. <!--json start-->
  124. <dependency>
  125. <groupId>com.alibaba</groupId>
  126. <artifactId>fastjson</artifactId>
  127. <version>${fastjson.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>net.sf.json-lib</groupId>
  131. <artifactId>json-lib</artifactId>
  132. <version>2.4</version>
  133. <type>jar</type>
  134. <classifier>jdk15</classifier>
  135. </dependency>
  136. <!--json end-->
  137. </dependencies>
  138. </project>