pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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.3.12.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.fdkankan</groupId>
  12. <artifactId>4dkankan-data-repair</artifactId>
  13. <version>2.0.0-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>releases</id>
  21. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  22. </repository>
  23. <repository>
  24. <id>snapshots</id>
  25. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  26. </repository>
  27. <repository>
  28. <id>nexus-aliyun</id>
  29. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  30. </repository>
  31. </repositories>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  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</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-devtools</artifactId>
  48. <scope>runtime</scope>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>8.0.25</version>
  65. <scope>runtime</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.baomidou</groupId>
  69. <artifactId>mybatis-plus-boot-starter</artifactId>
  70. <scope>compile</scope>
  71. <version>3.4.3.4</version>
  72. </dependency>
  73. <!--mybatis-plus代码生成器-->
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-generator</artifactId>
  77. <scope>compile</scope>
  78. <version>3.5.1</version>
  79. </dependency>
  80. <!--velocity模板-->
  81. <dependency>
  82. <groupId>org.apache.velocity</groupId>
  83. <artifactId>velocity-engine-core</artifactId>
  84. <version>2.3</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fdkankan</groupId>
  88. <artifactId>4dkankan-utils-fyun</artifactId>
  89. <version>2.0.0-SNAPSHOT</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fdkankan</groupId>
  93. <artifactId>4dkankan-utils-redis</artifactId>
  94. <version>2.0.0-SNAPSHOT</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.fdkankan</groupId>
  98. <artifactId>4dkankan-common-utils</artifactId>
  99. <version>2.0.0-SNAPSHOT</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fdkankan</groupId>
  103. <artifactId>4dkankan-utils-db</artifactId>
  104. <version>2.0.0-SNAPSHOT</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.fdkankan</groupId>
  108. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  109. <version>2.0.0-SNAPSHOT</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.yomahub</groupId>
  113. <artifactId>tlog-web-spring-boot-starter</artifactId>
  114. <version>1.3.6</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba.cloud</groupId>
  118. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba.cloud</groupId>
  122. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.dtflys.forest</groupId>
  126. <artifactId>forest-spring-boot-starter</artifactId>
  127. <version>1.5.19</version>
  128. </dependency>
  129. </dependencies>
  130. <dependencyManagement>
  131. <dependencies>
  132. <dependency>
  133. <groupId>com.alibaba.cloud</groupId>
  134. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  135. <version>2.2.7.RELEASE</version>
  136. <type>pom</type>
  137. <scope>import</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.cloud</groupId>
  141. <artifactId>spring-cloud-dependencies</artifactId>
  142. <version>${spring.cloud-version}</version>
  143. <type>pom</type>
  144. <scope>import</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.fdkankan</groupId>
  148. <artifactId>4dkankan-utils-fyun</artifactId>
  149. <version>2.0.0-SNAPSHOT</version>
  150. </dependency>
  151. </dependencies>
  152. </dependencyManagement>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-maven-plugin</artifactId>
  158. </plugin>
  159. </plugins>
  160. </build>
  161. <distributionManagement>
  162. <repository>
  163. <id>releases</id>
  164. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  165. </repository>
  166. <snapshotRepository>
  167. <id>snapshots</id>
  168. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  169. </snapshotRepository>
  170. </distributionManagement>
  171. </project>