pom.xml 4.2 KB

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