pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>dataplatform</artifactId>
  7. <groupId>com.liangjian</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>member-services</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.liangjian</groupId>
  15. <artifactId>member-common</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.liangjian</groupId>
  19. <artifactId>member-web-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.liangjian</groupId>
  23. <artifactId>member-services-models</artifactId>
  24. </dependency>
  25. <!-- jwt -->
  26. <dependency>
  27. <groupId>com.auth0</groupId>
  28. <artifactId>java-jwt</artifactId>
  29. <version>3.4.0</version>
  30. </dependency>
  31. <!-- Swagger 文档皮肤 -->
  32. <dependency>
  33. <groupId>com.github.xiaoymin</groupId>
  34. <artifactId>swagger-bootstrap-ui</artifactId>
  35. <version>1.9.6</version>
  36. </dependency>
  37. <!-- freemarker -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-freemarker</artifactId>
  41. </dependency>
  42. <!-- es -->
  43. <dependency>
  44. <groupId>org.elasticsearch.client</groupId>
  45. <artifactId>transport</artifactId>
  46. <version>7.0.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.elasticsearch.client</groupId>
  50. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  51. <version>7.0.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.elasticsearch</groupId>
  55. <artifactId>elasticsearch</artifactId>
  56. <version>7.0.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.elasticsearch</groupId>
  60. <artifactId>elasticsearch</artifactId>
  61. </dependency>
  62. <!-- 图片服务 -->
  63. <dependency>
  64. <groupId>com.github.tobato</groupId>
  65. <artifactId>fastdfs-client</artifactId>
  66. <version>1.26.2</version>
  67. </dependency>
  68. <!-- excel 依赖 -->
  69. <dependency>
  70. <groupId>org.apache.poi</groupId>
  71. <artifactId>poi</artifactId>
  72. <version>4.1.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>4.1.0</version>
  78. </dependency>
  79. <!-- 读取本地文件 -->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  83. </dependency>
  84. <!-- add the x-pack jar as a dependency -->
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.elasticsearch.client</groupId>-->
  87. <!-- <artifactId>x-pack-transport</artifactId>-->
  88. <!-- <version>7.0.1</version>-->
  89. <!-- </dependency>-->
  90. <!-- sharding jdbc -->
  91. <!--<dependency>-->
  92. <!--<groupId>io.shardingsphere</groupId>-->
  93. <!--<artifactId>sharding-jdbc-spring-boot-starter</artifactId>-->
  94. <!--<version>3.1.0</version>-->
  95. <!--</dependency>-->
  96. </dependencies>
  97. </project>