pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fdkankan</groupId>
  7. <artifactId>fdkankan-task</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.3.12.RELEASE</version>
  19. <relativePath/>
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-aop</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. <version>1.2.83</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <!--htt请求工具-->
  49. <dependency>
  50. <groupId>com.dtflys.forest</groupId>
  51. <artifactId>forest-spring-boot-starter</artifactId>
  52. <version>1.5.24</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.mybatis-flex</groupId>
  56. <artifactId>mybatis-flex-spring-boot-starter</artifactId>
  57. <version>1.7.4</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.mybatis-flex</groupId>
  61. <artifactId>mybatis-flex-processor</artifactId>
  62. <version>1.7.4</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.mybatis-flex</groupId>
  67. <artifactId>mybatis-flex-codegen</artifactId>
  68. <version>1.7.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.zaxxer</groupId>
  72. <artifactId>HikariCP</artifactId>
  73. <version>4.0.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.mysql</groupId>
  77. <artifactId>mysql-connector-j</artifactId>
  78. <version>8.0.32</version>
  79. </dependency>
  80. <!-- xxl-job-core -->
  81. <dependency>
  82. <groupId>com.xuxueli</groupId>
  83. <artifactId>xxl-job-core</artifactId>
  84. <version>2.4.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fdkankan</groupId>
  88. <artifactId>4dkankan-utils-dingtalk</artifactId>
  89. <version>3.0.0-SNAPSHOT</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fdkankan</groupId>
  93. <artifactId>4dkankan-utils-redis</artifactId>
  94. <version>3.0.0-SNAPSHOT</version>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-surefire-plugin</artifactId>
  106. <configuration>
  107. <testFailureIgnore>true</testFailureIgnore>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-compiler-plugin</artifactId>
  113. <configuration>
  114. <source>8</source>
  115. <target>8</target>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>