12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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-in</artifactId>
- <description>
- 内网模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.jjt</groupId>
- <artifactId>jjt-common</artifactId>
- </dependency>
- <!-- 系统模块 -->
- <dependency>
- <groupId>com.jjt</groupId>
- <artifactId>jjt-system</artifactId>
- </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>
|