pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jjt</artifactId>
  7. <groupId>com.jjt</groupId>
  8. <version>4.7.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jjt-in</artifactId>
  12. <description>
  13. 内网模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.jjt</groupId>
  19. <artifactId>jjt-common</artifactId>
  20. </dependency>
  21. <!-- 系统模块 -->
  22. <dependency>
  23. <groupId>com.jjt</groupId>
  24. <artifactId>jjt-system</artifactId>
  25. </dependency>
  26. <!--引入es-high-level-client相关依赖 start-->
  27. <dependency>
  28. <groupId>org.elasticsearch</groupId>
  29. <artifactId>elasticsearch</artifactId>
  30. <version>7.15.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.elasticsearch.client</groupId>
  34. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  35. <version>7.15.2</version>
  36. </dependency>
  37. <!--引入es-high-level-client相关依赖 end-->
  38. <!-- 引入zip4j 依赖-->
  39. <dependency>
  40. <groupId>net.lingala.zip4j</groupId>
  41. <artifactId>zip4j</artifactId>
  42. <version>2.11.5</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. <version>3.8.1</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>junit</groupId>
  52. <artifactId>junit</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>