pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.0.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>mainFactory</artifactId>
  13. <version>2.0.0</version>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <java.version>17</java.version>
  18. <graalvm.version>22.3.1</graalvm.version>
  19. </properties>
  20. <dependencies>
  21. <!-- apache commons-net 工具包 -ftp使用 -->
  22. <dependency>
  23. <groupId>commons-net</groupId>
  24. <artifactId>commons-net</artifactId>
  25. <version>3.9.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.yaml</groupId>
  33. <artifactId>snakeyaml</artifactId>
  34. <version>2.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.poi</groupId>
  38. <artifactId>poi</artifactId>
  39. <version>5.2.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.poi</groupId>
  43. <artifactId>poi-ooxml</artifactId>
  44. <version>5.2.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-databind</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-jdbc</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.data</groupId>
  61. <artifactId>spring-data-commons</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-compress</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.mysql</groupId>
  72. <artifactId>mysql-connector-j</artifactId>
  73. <scope>runtime</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.xerial</groupId>
  77. <artifactId>sqlite-jdbc</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.kafka</groupId>
  81. <artifactId>kafka-clients</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.dom4j</groupId>
  85. <artifactId>dom4j</artifactId>
  86. <version>2.1.3</version>
  87. </dependency>
  88. <!--rabbitmq 9-->
  89. <dependency>
  90. <groupId>com.rabbitmq</groupId>
  91. <artifactId>amqp-client</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.ibm.mq</groupId>
  95. <artifactId>com.ibm.mq.allclient</artifactId>
  96. <version>9.3.2.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.elasticsearch.client</groupId>
  100. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  101. <version>7.15.2</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.elasticsearch.client</groupId>
  105. <artifactId>elasticsearch-rest-client</artifactId>
  106. <version>7.15.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.elasticsearch</groupId>
  110. <artifactId>elasticsearch</artifactId>
  111. <version>7.17.9</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fasterxml.jackson.datatype</groupId>
  115. <artifactId>jackson-datatype-jsr310</artifactId>
  116. <version>2.13.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.openjdk.nashorn</groupId>
  120. <artifactId>nashorn-core</artifactId>
  121. <version>15.4</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework</groupId>
  125. <artifactId>spring-jms</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.ibm.mq</groupId>
  129. <artifactId>com.ibm.mq.jakarta.client</artifactId>
  130. <version>9.3.4.1</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>cn.com.kingbase</groupId>
  134. <artifactId>kingbase8</artifactId>
  135. <version>8.6.0</version>
  136. <scope>runtime</scope>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-maven-plugin</artifactId>
  144. <configuration>
  145. <includeSystemScope>true</includeSystemScope>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>