pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.app</groupId>
  7. <artifactId>4dkankan-center-app</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-common-utils</artifactId>
  20. <version>2.0.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fdkankan</groupId>
  24. <artifactId>4dkankan-utils-redis</artifactId>
  25. <version>2.0.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fdkankan</groupId>
  29. <artifactId>4dkankan-utils-db</artifactId>
  30. <version>2.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.fdkankan</groupId>
  34. <artifactId>4dkankan-utils-sms</artifactId>
  35. <version>2.0.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  48. <version>2.2.7.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba.cloud</groupId>
  52. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  53. <version>2.2.7.RELEASE</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>fastjson</artifactId>
  58. <version>1.2.83</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.yomahub</groupId>
  62. <artifactId>tlog-web-spring-boot-starter</artifactId>
  63. <version>1.3.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.yomahub</groupId>
  67. <artifactId>tlog-feign-spring-boot-starter</artifactId>
  68. <version>1.3.6</version>
  69. </dependency>
  70. <!-- htt请求工具-->
  71. <dependency>
  72. <groupId>com.dtflys.forest</groupId>
  73. <artifactId>forest-spring-boot-starter</artifactId>
  74. <version>1.5.19</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. </plugin>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-surefire-plugin</artifactId>
  90. <configuration>
  91. <testFailureIgnore>true</testFailureIgnore>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>