pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.zd</groupId>
  7. <artifactId>zd-common</artifactId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zd-common-core</artifactId>
  12. <description>
  13. zd-common-core核心模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Openfeign -->
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-openfeign</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Loadbalancer -->
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  25. </dependency>
  26. <!-- Spring Context Support -->
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-context-support</artifactId>
  30. </dependency>
  31. <!-- Spring Web -->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-web</artifactId>
  35. </dependency>
  36. <!-- Apache Commons Pool2 -->
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-pool2</artifactId>
  40. </dependency>
  41. <!-- Pagehelper -->
  42. <dependency>
  43. <groupId>com.github.pagehelper</groupId>
  44. <artifactId>pagehelper-spring-boot-starter</artifactId>
  45. </dependency>
  46. <!-- Hibernate Validator -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-validation</artifactId>
  50. </dependency>
  51. <!-- Jackson -->
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.datatype</groupId>
  58. <artifactId>jackson-datatype-jsr310</artifactId>
  59. </dependency>
  60. <!-- Alibaba Fastjson -->
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. </dependency>
  65. <!-- Apache Lang3 -->
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-lang3</artifactId>
  69. </dependency>
  70. <!-- Commons Io -->
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </dependency>
  75. <!-- Commons Fileupload -->
  76. <dependency>
  77. <groupId>commons-fileupload</groupId>
  78. <artifactId>commons-fileupload</artifactId>
  79. </dependency>
  80. <!-- excel工具 -->
  81. <dependency>
  82. <groupId>org.apache.poi</groupId>
  83. <artifactId>poi-ooxml</artifactId>
  84. </dependency>
  85. <!-- Java Servlet -->
  86. <dependency>
  87. <groupId>javax.servlet</groupId>
  88. <artifactId>javax.servlet-api</artifactId>
  89. </dependency>
  90. <!-- Swagger -->
  91. <dependency>
  92. <groupId>io.swagger</groupId>
  93. <artifactId>swagger-annotations</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>cn.hutool</groupId>
  97. <artifactId>hutool-all</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.baidubce</groupId>
  101. <artifactId>bce-java-sdk</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.belerweb</groupId>
  105. <artifactId>pinyin4j</artifactId>
  106. </dependency>
  107. <!-- 引入lombok组件 使用@Getter @Setter 注解,避免手写get、set方法,使代码更简洁、清亮 -->
  108. <dependency>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-webmvc</artifactId>
  115. </dependency>
  116. </dependencies>
  117. </project>