123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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>jjt</artifactId>
- <groupId>com.jjt</groupId>
- <version>4.7.7</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jjt-out</artifactId>
- <description>
- 外网模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.jjt</groupId>
- <artifactId>jjt-common</artifactId>
- </dependency>
- <!-- 系统模块 -->
- <dependency>
- <groupId>com.jjt</groupId>
- <artifactId>jjt-system</artifactId>
- </dependency>
- <!-- 引入mongodb-->
- <dependency>
- <groupId>org.mongodb</groupId>
- <artifactId>mongo-java-driver</artifactId>
- <version>3.11.2</version>
- </dependency>
- <!--引入es-high-level-client相关依赖 start-->
- <dependency>
- <groupId>org.elasticsearch</groupId>
- <artifactId>elasticsearch</artifactId>
- <version>7.15.2</version>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-high-level-client</artifactId>
- <version>7.15.2</version>
- </dependency>
- <!--引入es-high-level-client相关依赖 end-->
- <!-- 引入zip4j 依赖-->
- <dependency>
- <groupId>net.lingala.zip4j</groupId>
- <artifactId>zip4j</artifactId>
- <version>2.11.5</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
- </project>
|