pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>yami-shop-search</artifactId>
  7. <groupId>com.yami.shop</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yami-shop-search-common</artifactId>
  12. <description>商品搜索、es数据同步的公共模块,包括bean,service,dao等</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.elasticsearch.client</groupId>
  16. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.elasticsearch</groupId>
  20. <artifactId>elasticsearch</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.elasticsearch.client</groupId>
  24. <artifactId>elasticsearch-rest-client</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <artifactId>commons-logging</artifactId>
  28. <groupId>commons-logging</groupId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.yami.shop</groupId>
  34. <artifactId>yami-shop-security-common</artifactId>
  35. <version>${yami.shop.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.yami.shop</groupId>
  39. <artifactId>yami-shop-service</artifactId>
  40. <version>${yami.shop.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.truenewx</groupId>
  44. <artifactId>ik-analyzer-core</artifactId>
  45. <version>${ik-analyzer.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.yami.shop</groupId>
  49. <artifactId>yami-shop-delivery-common</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>