pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.1.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>mainFactory</artifactId>
  13. <version>1.0-SNAPSHOT</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>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-aop</artifactId>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-client -->
  61. <dependency>
  62. <groupId>org.apache.activemq</groupId>
  63. <artifactId>activemq-client</artifactId>
  64. <version>5.18.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>junit</groupId>
  68. <artifactId>junit</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-jdbc</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.data</groupId>
  77. <artifactId>spring-data-commons</artifactId>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-compress</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.mysql</groupId>
  87. <artifactId>mysql-connector-j</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.xerial</groupId>
  91. <artifactId>sqlite-jdbc</artifactId>
  92. <version>3.40.1.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.kafka</groupId>
  96. <artifactId>kafka-clients</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.dom4j</groupId>
  100. <artifactId>dom4j</artifactId>
  101. <version>2.1.3</version>
  102. </dependency>
  103. <!--rabbitmq 9-->
  104. <dependency>
  105. <groupId>com.rabbitmq</groupId>
  106. <artifactId>amqp-client</artifactId>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/com.ibm.mq/com.ibm.mq.allclient -->
  109. <dependency>
  110. <groupId>com.ibm.mq</groupId>
  111. <artifactId>com.ibm.mq.allclient</artifactId>
  112. <version>9.3.3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.elasticsearch.client</groupId>
  116. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  117. <version>7.15.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.elasticsearch.client</groupId>
  121. <artifactId>elasticsearch-rest-client</artifactId>
  122. <version>7.15.2</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.elasticsearch</groupId>
  126. <artifactId>elasticsearch</artifactId>
  127. <version>7.17.9</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.fasterxml.jackson.datatype</groupId>
  131. <artifactId>jackson-datatype-jsr310</artifactId>
  132. <version>2.13.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.openjdk.nashorn</groupId>
  136. <artifactId>nashorn-core</artifactId>
  137. <version>15.4</version>
  138. </dependency>
  139. <!-- <dependency>-->
  140. <!-- <groupId>cn.hutool</groupId>-->
  141. <!-- <artifactId>hutool-all</artifactId>-->
  142. <!-- <version>5.8.18</version>-->
  143. <!-- </dependency>-->
  144. </dependencies>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-maven-plugin</artifactId>
  150. <configuration>
  151. <includeSystemScope>true</includeSystemScope>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>