数据采集服务

pom.xml 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.7</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.njyunzhi</groupId>
  12. <artifactId>nanyang</artifactId>
  13. <version>0.0.1</version>
  14. <name>data-collect</name>
  15. <description>数据采集</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <log4j.version>2.17.0</log4j.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <!--mysql start-->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. <scope>runtime</scope>
  35. </dependency>
  36. <!--mysql end-->
  37. <!--mybatis-plus start-->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.1.1</version>
  42. </dependency>
  43. <!--mybatis-plus end-->
  44. <!--lombok start-->
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!--lombok end-->
  51. <!--fastjson start-->
  52. <!-- <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.56</version>
  56. </dependency> -->
  57. <!--fastjson end-->
  58. <!--oss start-->
  59. <dependency>
  60. <groupId>com.aliyun.oss</groupId>
  61. <artifactId>aliyun-sdk-oss</artifactId>
  62. <version>2.8.3</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.aliyun</groupId>
  66. <artifactId>aliyun-java-sdk-core</artifactId>
  67. <version>[4.4.9,5.0.0)</version>
  68. </dependency>
  69. <!--oss end-->
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. <configuration>
  77. <includeSystemScope>true</includeSystemScope>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>