123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?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>lb-server</artifactId>
- <groupId>com.ydd</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>lb-module</artifactId>
- <properties>
- <elasticsearch.version>7.6.1</elasticsearch.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.ydd</groupId>
- <artifactId>lb-common</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.ydd</groupId>
- <artifactId>lb-system</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.ydd</groupId>
- <artifactId>lb-third-common</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.ydd</groupId>
- <artifactId>lb-feginclient</artifactId>
- <version>1.0</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.ydd</groupId>-->
- <!--<artifactId>lb-third-print</artifactId>-->
- <!--<version>1.0</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>com.ydd</groupId>-->
- <!--<artifactId>lb-third-waimai</artifactId>-->
- <!--<version>1.0</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>com.ydd</groupId>-->
- <!--<artifactId>lb-third-delivery</artifactId>-->
- <!--<version>1.0</version>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/com.getui.push/restful-sdk -->
- <dependency>
- <groupId>com.getui.push</groupId>
- <artifactId>restful-sdk</artifactId>
- <version>1.0.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-pay</artifactId>
- <version>4.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.javen205</groupId>
- <artifactId>IJPay-All</artifactId>
- <version>2.6.3</version>
- </dependency>
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>4.11.54.ALL</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-client</artifactId>-->
- <!-- <version>7.9.1</version>-->
- <!-- </dependency>-->
- <!-- <!– Java High Level REST Client –>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
- <!-- <version>7.9.1</version>-->
- <!-- </dependency>-->
- <!-- <!–es-7.9.0–>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch</groupId>-->
- <!-- <artifactId>elasticsearch</artifactId>-->
- <!-- <version>7.9.1</version>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
|