pom.xml 4.7 KB

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