pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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>dataHandler</artifactId>
  7. <groupId>org.bfkj</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mainFactory</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <java.version>17</java.version>
  16. <graalvm.version>22.3.1</graalvm.version>
  17. </properties>
  18. <dependencies>
  19. <!-- apache commons-net 工具包 -ftp使用 -->
  20. <dependency>
  21. <groupId>commons-net</groupId>
  22. <artifactId>commons-net</artifactId>
  23. <version>3.9.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-logging</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>com.vaadin.external.google</groupId>
  35. <artifactId>android-json</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-test</artifactId>
  42. <version>5.3.22</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.core</groupId>
  47. <artifactId>jackson-databind</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-test</artifactId>
  57. <version>2.7.2</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-jdbc</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.data</groupId>
  66. <artifactId>spring-data-commons</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>8.0.31</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.xerial</groupId>
  76. <artifactId>sqlite-jdbc</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.kafka</groupId>
  80. <artifactId>kafka-clients</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.dom4j</groupId>
  84. <artifactId>dom4j</artifactId>
  85. <version>2.1.3</version>
  86. </dependency>
  87. <!--rabbitmq 9-->
  88. <dependency>
  89. <groupId>com.rabbitmq</groupId>
  90. <artifactId>amqp-client</artifactId>
  91. <version>5.7.3</version>
  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>com.bfkj</groupId>-->
  100. <!-- <artifactId>ibmq6</artifactId>-->
  101. <!-- <version>0.0.1</version>-->
  102. <!-- <scope>system</scope>-->
  103. <!-- <systemPath>${project.basedir}/src/main/resources/lib/com.ibmq.mq-6.jar</systemPath>-->
  104. <!-- </dependency>-->
  105. <dependency>
  106. <groupId>org.elasticsearch.client</groupId>
  107. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  108. <version>7.15.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.elasticsearch.client</groupId>
  112. <artifactId>elasticsearch-rest-client</artifactId>
  113. <version>7.15.2</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.elasticsearch</groupId>
  117. <artifactId>elasticsearch</artifactId>
  118. <version>7.15.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.fasterxml.jackson.datatype</groupId>
  122. <artifactId>jackson-datatype-jsr310</artifactId>
  123. <version>2.13.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.openjdk.nashorn</groupId>
  127. <artifactId>nashorn-core</artifactId>
  128. <version>15.4</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. <configuration>
  137. <includeSystemScope>true</includeSystemScope>
  138. </configuration>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>