pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <dependency>
  69. <groupId>org.codehaus.jackson</groupId>
  70. <artifactId>jackson-mapper-asl</artifactId>
  71. <version>1.9.13</version>
  72. </dependency>
  73. <!-- excel 依赖 -->
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi</artifactId>
  77. <version>4.1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml</artifactId>
  82. <version>4.1.0</version>
  83. </dependency>
  84. <!-- 读取本地文件 -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.hibernate</groupId>
  91. <artifactId>hibernate-core</artifactId>
  92. <version>5.3.10.Final</version>
  93. </dependency>
  94. <!-- add the x-pack jar as a dependency -->
  95. <!-- <dependency>-->
  96. <!-- <groupId>org.elasticsearch.client</groupId>-->
  97. <!-- <artifactId>x-pack-transport</artifactId>-->
  98. <!-- <version>7.0.1</version>-->
  99. <!-- </dependency>-->
  100. <!-- sharding jdbc -->
  101. <!--<dependency>-->
  102. <!--<groupId>io.shardingsphere</groupId>-->
  103. <!--<artifactId>sharding-jdbc-spring-boot-starter</artifactId>-->
  104. <!--<version>3.1.0</version>-->
  105. <!--</dependency>-->
  106. </dependencies>
  107. </project>