pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <groupId>com.jpsoft</groupId>
  7. <artifactId>picc</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.2.1.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <modules>
  17. <module>picc-admin-server</module>
  18. <module>picc-common</module>
  19. <module>picc-enterprise-server</module>
  20. <module>weixin-middleware</module>
  21. </modules>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <lombok.version>1.16.12</lombok.version>
  25. <hutool.version>5.0.6</hutool.version>
  26. <swagger2.version>2.7.0</swagger2.version>
  27. <poi.version>4.1.0</poi.version>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-devtools</artifactId>
  33. <scope>runtime</scope>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.hutool</groupId>
  43. <artifactId>hutool-all</artifactId>
  44. <version>${hutool.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-lang3</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.dozermapper</groupId>
  52. <artifactId>dozer-core</artifactId>
  53. <version>6.4.1</version>
  54. </dependency>
  55. <!-- swagger ui begin-->
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger2</artifactId>
  59. <version>${swagger2.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.springfox</groupId>
  63. <artifactId>springfox-swagger-ui</artifactId>
  64. <version>${swagger2.version}</version>
  65. </dependency>
  66. <!-- swagger ui end-->
  67. <!-- apache poi -->
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi</artifactId>
  71. <version>${poi.version}</version>
  72. <scope>compile</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-scratchpad</artifactId>
  77. <version>${poi.version}</version>
  78. <scope>compile</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi-ooxml</artifactId>
  83. <version>${poi.version}</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml-schemas</artifactId>
  89. <version>${poi.version}</version>
  90. <scope>compile</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>fr.opensagres.xdocreport</groupId>
  94. <artifactId>xdocreport</artifactId>
  95. <version>1.0.6</version>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>ooxml-schemas</artifactId>
  101. <version>1.3</version>
  102. <scope>compile</scope>
  103. </dependency>
  104. <!-- apache poi end -->
  105. <!-- aliyun oss start -->
  106. <dependency>
  107. <groupId>com.aliyun.oss</groupId>
  108. <artifactId>aliyun-sdk-oss</artifactId>
  109. <version>3.1.0</version>
  110. </dependency>
  111. <!-- aliyun oss end -->
  112. <!-- 阿里大鱼短信jar包 start-->
  113. <dependency>
  114. <groupId>com.taobao</groupId>
  115. <artifactId>taobao-sdk-java</artifactId>
  116. <version>1.0.0</version>
  117. </dependency>
  118. <!-- 阿里大鱼短信jar包 end-->
  119. <!--html转pdf start-->
  120. <dependency>
  121. <groupId>com.itextpdf</groupId>
  122. <artifactId>itextpdf</artifactId>
  123. <version>5.5.13</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.itextpdf</groupId>
  127. <artifactId>itext-asian</artifactId>
  128. <version>5.2.0</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.httpcomponents</groupId>
  132. <artifactId>httpclient</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-data-redis</artifactId>
  137. </dependency>
  138. </dependencies>
  139. </project>