pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <!-- <exclusions>-->
  31. <!-- <exclusion>-->
  32. <!-- <groupId>org.springframework.boot</groupId>-->
  33. <!-- <artifactId>spring-boot-starter-logging</artifactId>-->
  34. <!-- </exclusion>-->
  35. <!-- </exclusions>-->
  36. </dependency>
  37. <dependency>
  38. <groupId>org.yaml</groupId>
  39. <artifactId>snakeyaml</artifactId>
  40. <version>2.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi</artifactId>
  45. <version>5.2.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>poi-ooxml</artifactId>
  50. <version>5.2.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-jdbc</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.data</groupId>
  67. <artifactId>spring-data-commons</artifactId>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-compress</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.mysql</groupId>
  78. <artifactId>mysql-connector-j</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.xerial</groupId>
  82. <artifactId>sqlite-jdbc</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.kafka</groupId>
  86. <artifactId>kafka-clients</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.dom4j</groupId>
  90. <artifactId>dom4j</artifactId>
  91. <version>2.1.3</version>
  92. </dependency>
  93. <!--rabbitmq 9-->
  94. <dependency>
  95. <groupId>com.rabbitmq</groupId>
  96. <artifactId>amqp-client</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.ibm.mq</groupId>
  100. <artifactId>com.ibm.mq.allclient</artifactId>
  101. <version>9.3.2.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.elasticsearch.client</groupId>
  105. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  106. <version>7.15.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.elasticsearch.client</groupId>
  110. <artifactId>elasticsearch-rest-client</artifactId>
  111. <version>7.15.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.elasticsearch</groupId>
  115. <artifactId>elasticsearch</artifactId>
  116. <version>7.17.9</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.fasterxml.jackson.datatype</groupId>
  120. <artifactId>jackson-datatype-jsr310</artifactId>
  121. <version>2.13.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.openjdk.nashorn</groupId>
  125. <artifactId>nashorn-core</artifactId>
  126. <version>15.4</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework</groupId>
  130. <artifactId>spring-jms</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.ibm.mq</groupId>
  134. <artifactId>com.ibm.mq.jakarta.client</artifactId>
  135. <version>9.3.4.1</version>
  136. </dependency>
  137. <!-- <dependency>-->
  138. <!-- <groupId>cn.hutool</groupId>-->
  139. <!-- <artifactId>hutool-all</artifactId>-->
  140. <!-- <version>5.8.18</version>-->
  141. <!-- </dependency>-->
  142. <dependency>
  143. <groupId>cn.com.kingbase</groupId>
  144. <artifactId>kingbase8</artifactId>
  145. <version>8.6.0</version>
  146. <scope>runtime</scope>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-maven-plugin</artifactId>
  154. <configuration>
  155. <includeSystemScope>true</includeSystemScope>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>