过滤器应用
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.

130 lines
4.8 KiB

6 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bfd.crawl</groupId>
  6. <artifactId>dataFilter</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>dataFilter</name>
  9. <description>dataFilter</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. <!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
  18. <dependency>
  19. <groupId>de.codecentric</groupId>
  20. <artifactId>spring-boot-admin-client</artifactId>
  21. <version>2.2.4</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.kafka</groupId>
  29. <artifactId>spring-kafka</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <!--redis-->
  36. <dependency>
  37. <groupId>org.redisson</groupId>
  38. <artifactId>redisson-spring-boot-starter</artifactId>
  39. <version>3.13.6</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </dependency>
  45. <!--JPA-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-jpa</artifactId>
  49. </dependency>
  50. <!-- mysql -->
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <scope>runtime</scope>
  55. </dependency>
  56. <!--JSON-->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>fastjson</artifactId>
  60. <version>2.0.17</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-devtools</artifactId>
  65. <scope>runtime</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.kafka</groupId>
  80. <artifactId>spring-kafka-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.bfd.util</groupId>
  85. <artifactId>pauseTool</artifactId>
  86. <version>1.0</version>
  87. </dependency>
  88. </dependencies>
  89. <dependencyManagement>
  90. <dependencies>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-dependencies</artifactId>
  94. <version>${spring-boot.version}</version>
  95. <type>pom</type>
  96. <scope>import</scope>
  97. </dependency>
  98. </dependencies>
  99. </dependencyManagement>
  100. <build>
  101. <finalName>dataFilter-0.0.1-SNAPSHOT</finalName>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <version>2.4.1</version>
  107. <configuration>
  108. <includeSystemScope>true</includeSystemScope>
  109. </configuration>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>repackage</goal>
  114. </goals>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <configuration>
  122. <source>8</source>
  123. <target>8</target>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>