| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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>tzy</artifactId>
- <groupId>com.tzy</groupId>
- <version>4.5.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tzy-sportcard</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.tzy</groupId>
- <artifactId>weixin-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.59</version>
- </dependency>
- <dependency>
- <groupId>jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.0</version>
- </dependency>
- <!--人脸识别 -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>cloudauth20190307</artifactId>
- <version>1.0.1</version>
- </dependency>
- <!-- elasticsearch -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.lucene</groupId>
- <artifactId>lucene-core</artifactId>
- <!-- <version>8.11.1</version>-->
- <version>7.7.2</version>
- </dependency>
- </dependencies>
- </project>
|