pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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>org.example</groupId>
  7. <artifactId>4dkankan-agent</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.fdkankan</groupId>
  19. <artifactId>4dkankan-utils-redis</artifactId>
  20. <version>3.0.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fdkankan</groupId>
  24. <artifactId>4dkankan-utils-fyun</artifactId>
  25. <version>2.0.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fdkankan</groupId>
  29. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  30. <version>3.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.fdkankan</groupId>
  34. <artifactId>4dkankan-utils-sms</artifactId>
  35. <version>5.0.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <version>8.0.25</version>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-boot-starter</artifactId>
  46. <scope>compile</scope>
  47. <version>3.4.3.4</version>
  48. </dependency>
  49. <!--mybatis-plus代码生成器-->
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-generator</artifactId>
  53. <scope>compile</scope>
  54. <version>3.5.1</version>
  55. </dependency>
  56. <!--velocity模板-->
  57. <dependency>
  58. <groupId>org.apache.velocity</groupId>
  59. <artifactId>velocity-engine-core</artifactId>
  60. <version>2.3</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-aop</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  73. <version>2.2.7.RELEASE</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba.cloud</groupId>
  77. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  78. <version>2.2.7.RELEASE</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>1.2.83</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>easyexcel</artifactId>
  88. <version>3.1.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-validation</artifactId>
  93. </dependency>
  94. <!--htt请求工具-->
  95. <dependency>
  96. <groupId>com.dtflys.forest</groupId>
  97. <artifactId>forest-spring-boot-starter</artifactId>
  98. <version>1.5.24</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.projectlombok</groupId>
  102. <artifactId>lombok</artifactId>
  103. <version>1.18.20</version>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-surefire-plugin</artifactId>
  115. <configuration>
  116. <testFailureIgnore>true</testFailureIgnore>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <configuration>
  123. <source>8</source>
  124. <target>8</target>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>