采集平台应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
4.7 KiB

7 months ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bfd.crawl</groupId>
  6. <artifactId>handlerData</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>handlerData</name>
  9. <description>handlerData</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.2.4.RELEASE</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>de.codecentric</groupId>
  19. <artifactId>spring-boot-admin-client</artifactId>
  20. <version>2.2.4</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.code.gson</groupId>
  24. <artifactId>gson</artifactId>
  25. <version>2.8.8</version>
  26. </dependency>
  27. <!-- <dependency>-->
  28. <!-- <groupId>org.springframework.boot</groupId>-->
  29. <!-- <artifactId>spring-boot-starter</artifactId>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>org.springframework.kafka</groupId>
  33. <artifactId>spring-kafka</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <!--JSON-->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. <version>1.2.0</version>
  44. </dependency>
  45. <!--OKHTTP-->
  46. <dependency>
  47. <groupId>com.squareup.okhttp3</groupId>
  48. <artifactId>okhttp</artifactId>
  49. <version>3.9.1</version>
  50. </dependency>
  51. <!-- <dependency>-->
  52. <!-- <groupId>org.springframework.boot</groupId>-->
  53. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  54. <!-- <scope>runtime</scope>-->
  55. <!-- <optional>true</optional>-->
  56. <!-- </dependency>-->
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <optional>true</optional>
  61. </dependency>
  62. <!-- <dependency>-->
  63. <!-- <groupId>org.springframework.boot</groupId>-->
  64. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  65. <!-- <scope>test</scope>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>org.springframework.kafka</groupId>
  69. <artifactId>spring-kafka-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.kafka</groupId>
  74. <artifactId>kafka-clients</artifactId>
  75. <version>2.3.1</version> <!--根据您正在使用的Kafka版本选择合适的版本号-->
  76. </dependency>
  77. <dependency>
  78. <groupId>com.bfd.util</groupId>
  79. <artifactId>pauseTool</artifactId>
  80. <version>1.0</version>
  81. </dependency>
  82. </dependencies>
  83. <dependencyManagement>
  84. <dependencies>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-dependencies</artifactId>
  88. <version>${spring-boot.version}</version>
  89. <type>pom</type>
  90. <scope>import</scope>
  91. </dependency>
  92. </dependencies>
  93. </dependencyManagement>
  94. <build>
  95. <finalName>handlerData-0.0.1-SNAPSHOT</finalName>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <version>2.4.1</version>
  101. <configuration>
  102. <includeSystemScope>true</includeSystemScope>
  103. </configuration>
  104. <executions>
  105. <execution>
  106. <goals>
  107. <goal>repackage</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-compiler-plugin</artifactId>
  115. <configuration>
  116. <source>8</source>
  117. <target>8</target>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>