| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>yami-shop-search</artifactId>
- <groupId>com.yami.shop</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>yami-shop-search-common</artifactId>
- <description>商品搜索、es数据同步的公共模块,包括bean,service,dao等</description>
- <dependencies>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-high-level-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch</groupId>
- <artifactId>elasticsearch</artifactId>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-client</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.yami.shop</groupId>
- <artifactId>yami-shop-security-common</artifactId>
- <version>${yami.shop.version}</version>
- </dependency>
- <dependency>
- <groupId>com.yami.shop</groupId>
- <artifactId>yami-shop-service</artifactId>
- <version>${yami.shop.version}</version>
- </dependency>
- <dependency>
- <groupId>org.truenewx</groupId>
- <artifactId>ik-analyzer-core</artifactId>
- <version>${ik-analyzer.version}</version>
- </dependency>
- <dependency>
- <groupId>com.yami.shop</groupId>
- <artifactId>yami-shop-delivery-common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|