pom.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.0</version>
  10. <relativePath/> <!-- 或者默�?-->
  11. </parent>
  12. <groupId>com.storlead.boot</groupId>
  13. <artifactId>storlead-saas-platform</artifactId>
  14. <version>1.0</version>
  15. <packaging>pom</packaging>
  16. <name>storlead-saas-platform</name>
  17. <modules>
  18. <module>java/storlead-dependencies</module>
  19. <module>java/storlead-framework</module>
  20. <module>java/storlead-user</module>
  21. <module>java/storlead-system</module>
  22. <module>java/storlead-message</module>
  23. <module>java/storlead-es</module>
  24. <module>java/storlead-sms</module>
  25. <module>java/storlead-mail</module>
  26. <module>java/storlead-knowledge</module>
  27. <module>java/storlead-thirdparty</module>
  28. <module>java/storlead-sasa</module>
  29. <!-- 启动模块放最后:依赖上面所有 domain 模块 -->
  30. <module>java/storlead-api</module>
  31. </modules>
  32. <properties>
  33. <revision>1.0</revision>
  34. <java.version>11</java.version>
  35. <maven.compiler.source>${java.version}</maven.compiler.source>
  36. <maven.compiler.target>${java.version}</maven.compiler.target>
  37. <!-- 全局配置项目版本 -->
  38. <jwt.version>0.9.1</jwt.version>
  39. <commons.version>2.6</commons.version>
  40. <!-- 表示打包时跳过mvn test -->
  41. <maven.test.skip>true</maven.test.skip>
  42. <aviator.version>5.2.7</aviator.version>
  43. <io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
  44. <logstash-logback.version>6.6</logstash-logback.version>
  45. <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
  46. <maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
  47. <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
  48. <spring.boot.version>2.7.0</spring.boot.version>
  49. <mapstruct.version>1.6.3</mapstruct.version>
  50. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  51. <spring.boot.starter.parent>2.7.0</spring.boot.starter.parent>
  52. <knife4j.version>3.0.3</knife4j.version>
  53. <spring-web.version>5.3.32</spring-web.version>
  54. <jsoup.version>1.18.3</jsoup.version>
  55. <mockito-inline.version>4.11.0</mockito-inline.version>
  56. <lombok.version>1.18.36</lombok.version>
  57. <spring.framework.version>5.3.20</spring.framework.version>
  58. <spring.security.version>5.8.14</spring.security.version>
  59. <fastjson.version>2.0.23</fastjson.version>
  60. <!-- 5.8.35-->
  61. <hutool.version>5.4.3</hutool.version>
  62. <springdoc.version>1.7.0</springdoc.version>
  63. <swagger.ui.version>3.0.0</swagger.ui.version>
  64. <swagger.version>3.0.0</swagger.version>
  65. <swagger.annotations.version>1.5.22</swagger.annotations.version>
  66. <spring.web.socket.version>1.5.3</spring.web.socket.version>
  67. <!-- redis -->
  68. <redisson.version>3.6.5</redisson.version>
  69. <httpclient.version>4.5.3</httpclient.version>
  70. <!-- DB 相关 -->
  71. <druid.version>1.1.24</druid.version>
  72. <mybatis.version>3.5.17</mybatis.version>
  73. <mybatis-plus.version>3.1.2</mybatis-plus.version>
  74. <datasource.spring.boot.starter>2.5.4</datasource.spring.boot.starter>
  75. <dynamic-datasource.version>4.3.1</dynamic-datasource.version>
  76. <mybatis-plus-join.version>1.4.13</mybatis-plus-join.version>
  77. <mysql.connector.version>5.1.47</mysql.connector.version>
  78. <guava.version>33.4.0-jre</guava.version>
  79. <transmittable.thread.version>2.14.0</transmittable.thread.version>
  80. <google.code.gson.version>2.10.1</google.code.gson.version>
  81. <squareup.okhttp.version>4.12.0</squareup.okhttp.version>
  82. <okhttp.sse.version>4.10.0</okhttp.sse.version>
  83. <spring.validation.version>2.6.3</spring.validation.version>
  84. <apache.httpcore5.client5.version>5.2.1</apache.httpcore5.client5.version>
  85. <apache.httpcore5.version>5.2.1</apache.httpcore5.version>
  86. <apache.httpcore5-h2.version>5.2.1</apache.httpcore5-h2.version>
  87. <apache.httpasyncclient.version>4.1.5</apache.httpasyncclient.version>
  88. <io.jsonwebtoken.java.jwt.version>3.7.0</io.jsonwebtoken.java.jwt.version>
  89. <cn.stylefeng.pinyin4j.version>7.2.3</cn.stylefeng.pinyin4j.version>
  90. </properties>
  91. <!-- <dependencyManagement>-->
  92. <!-- <dependencies>-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>com.storlead.boot</groupId>-->
  95. <!-- <artifactId>storlead-dependencies</artifactId>-->
  96. <!-- <version>1.0</version>-->
  97. <!-- <type>pom</type>-->
  98. <!-- <scope>import</scope>-->
  99. <!-- </dependency>-->
  100. <!-- </dependencies>-->
  101. <!-- </dependencyManagement>-->
  102. <dependencyManagement>
  103. <dependencies>
  104. <!-- 统一三方依赖版本入口 -->
  105. <dependency>
  106. <groupId>com.storlead.boot</groupId>
  107. <artifactId>storlead-dependencies</artifactId>
  108. <version>${revision}</version>
  109. <type>pom</type>
  110. <scope>import</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.storlead.boot</groupId>
  114. <artifactId>storlead-framework</artifactId>
  115. <version>${revision}</version>
  116. <type>pom</type>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.storlead.boot</groupId>
  120. <artifactId>storlead-core</artifactId>
  121. <version>${revision}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.storlead.boot</groupId>
  125. <artifactId>storlead-auth</artifactId>
  126. <version>${revision}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.storlead.boot</groupId>
  130. <artifactId>storlead-redis</artifactId>
  131. <version>${revision}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.storlead.boot</groupId>
  135. <artifactId>storlead-web</artifactId>
  136. <version>${revision}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.storlead.boot</groupId>
  140. <artifactId>storlead-system-core</artifactId>
  141. <version>${revision}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.storlead.boot</groupId>
  145. <artifactId>storlead-system-spi</artifactId>
  146. <version>${revision}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.storlead.boot</groupId>
  150. <artifactId>storlead-system-biz</artifactId>
  151. <version>${revision}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.storlead.boot</groupId>
  155. <artifactId>storlead-system-api</artifactId>
  156. <version>${revision}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.storlead.boot</groupId>
  160. <artifactId>storlead-message-api</artifactId>
  161. <version>${revision}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.storlead.boot</groupId>
  165. <artifactId>storlead-message-core</artifactId>
  166. <version>${revision}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.storlead.boot</groupId>
  170. <artifactId>storlead-message-spi</artifactId>
  171. <version>${revision}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.storlead.boot</groupId>
  175. <artifactId>storlead-message-biz</artifactId>
  176. <version>${revision}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.storlead.boot</groupId>
  180. <artifactId>storlead-es-core</artifactId>
  181. <version>${revision}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.storlead.boot</groupId>
  185. <artifactId>storlead-es-spi</artifactId>
  186. <version>${revision}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>com.storlead.boot</groupId>
  190. <artifactId>storlead-es-biz</artifactId>
  191. <version>${revision}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.storlead.boot</groupId>
  195. <artifactId>storlead-es-api</artifactId>
  196. <version>${revision}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.storlead.boot</groupId>
  200. <artifactId>storlead-sms</artifactId>
  201. <version>${revision}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.storlead.boot</groupId>
  205. <artifactId>storlead-sms-core</artifactId>
  206. <version>${revision}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.storlead.boot</groupId>
  210. <artifactId>storlead-sms-spi</artifactId>
  211. <version>${revision}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>com.storlead.boot</groupId>
  215. <artifactId>storlead-sms-biz</artifactId>
  216. <version>${revision}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>com.storlead.boot</groupId>
  220. <artifactId>storlead-sms-api</artifactId>
  221. <version>${revision}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>com.storlead.boot</groupId>
  225. <artifactId>storlead-user-core</artifactId>
  226. <version>${revision}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>com.storlead.boot</groupId>
  230. <artifactId>storlead-user-spi</artifactId>
  231. <version>${revision}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>com.storlead.boot</groupId>
  235. <artifactId>storlead-user-api</artifactId>
  236. <version>${revision}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.storlead.boot</groupId>
  240. <artifactId>storlead-user-biz</artifactId>
  241. <version>${revision}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.storlead.boot</groupId>
  245. <artifactId>storlead-knowledge-core</artifactId>
  246. <version>${revision}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.storlead.boot</groupId>
  250. <artifactId>storlead-knowledge-spi</artifactId>
  251. <version>${revision}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.storlead.boot</groupId>
  255. <artifactId>storlead-knowledge-biz</artifactId>
  256. <version>${revision}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.storlead.boot</groupId>
  260. <artifactId>storlead-knowledge-api</artifactId>
  261. <version>${revision}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>com.storlead.boot</groupId>
  265. <artifactId>storlead-thirdparty-api</artifactId>
  266. <version>${revision}</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.storlead.boot</groupId>
  270. <artifactId>storlead-thirdparty-spi</artifactId>
  271. <version>${revision}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.storlead.boot</groupId>
  275. <artifactId>storlead-thirdparty-biz</artifactId>
  276. <version>${revision}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>com.storlead.boot</groupId>
  280. <artifactId>storlead-thirdparty-wecom</artifactId>
  281. <version>${revision}</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>com.storlead.boot</groupId>
  285. <artifactId>storlead-thirdparty-dingtalk</artifactId>
  286. <version>${revision}</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>com.storlead.boot</groupId>
  290. <artifactId>storlead-customer</artifactId>
  291. <version>${revision}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>com.storlead.boot</groupId>
  295. <artifactId>storlead-sales</artifactId>
  296. <version>${revision}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.storlead.boot</groupId>
  300. <artifactId>storlead-mail-core</artifactId>
  301. <version>${revision}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>com.storlead.boot</groupId>
  305. <artifactId>storlead-mail-spi</artifactId>
  306. <version>${revision}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.storlead.boot</groupId>
  310. <artifactId>storlead-mail-biz</artifactId>
  311. <version>${revision}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.storlead.boot</groupId>
  315. <artifactId>storlead-mail-api</artifactId>
  316. <version>${revision}</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>com.storlead.boot</groupId>
  320. <artifactId>storlead-marketing</artifactId>
  321. <version>${revision}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.storlead.boot</groupId>
  325. <artifactId>storlead-acquisition</artifactId>
  326. <version>${revision}</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>com.storlead.boot</groupId>
  330. <artifactId>storlead-mybatis</artifactId>
  331. <version>${revision}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>com.storlead.boot</groupId>
  335. <artifactId>storlead-common</artifactId>
  336. <version>${revision}</version>
  337. </dependency>
  338. <!-- &lt;!&ndash;swagger&ndash;&gt;-->
  339. <dependency>
  340. <groupId>io.springfox</groupId>
  341. <artifactId>springfox-swagger2</artifactId>
  342. <version>${swagger.version}</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>io.springfox</groupId>
  346. <artifactId>springfox-swagger-ui</artifactId>
  347. <version>${swagger.ui.version}</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>io.swagger</groupId>
  351. <artifactId>swagger-annotations</artifactId>
  352. <version>${swagger.annotations.version}</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.alibaba</groupId>
  356. <artifactId>fastjson</artifactId>
  357. <version>${fastjson.version}</version>
  358. </dependency>
  359. <!--JWT-->
  360. <dependency>
  361. <groupId>com.auth0</groupId>
  362. <artifactId>java-jwt</artifactId>
  363. <version>${io.jsonwebtoken.java.jwt.version}</version>
  364. </dependency>
  365. <!-- jwt 需�?移除会报�? -->
  366. <dependency>
  367. <groupId>io.jsonwebtoken</groupId>
  368. <artifactId>jjwt</artifactId>
  369. <version>${io.jsonwebtoken.version}</version>
  370. </dependency>
  371. <!-- pinyin4j -->
  372. <dependency>
  373. <groupId>cn.stylefeng.roses</groupId>
  374. <artifactId>pinyin-sdk-pinyin4j</artifactId>
  375. <version>${cn.stylefeng.pinyin4j.version}</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>org.projectlombok</groupId>
  379. <artifactId>lombok</artifactId>
  380. <version>${lombok.version}</version>
  381. </dependency>
  382. <dependency>
  383. <groupId>cn.hutool</groupId>
  384. <artifactId>hutool-all</artifactId>
  385. <version>${hutool.version}</version>
  386. </dependency>
  387. <dependency>
  388. <groupId>org.redisson</groupId>
  389. <artifactId>redisson</artifactId>
  390. <version>${redisson.version}</version>
  391. </dependency>
  392. <!-- <dependency>-->
  393. <!-- <groupId>org.springframework.boot</groupId>-->
  394. <!-- <artifactId>spring-boot-dependencies</artifactId>-->
  395. <!-- <version>${spring.boot.version}</version>-->
  396. <!-- </dependency>-->
  397. <!--HttpClient-->
  398. <dependency>
  399. <groupId>org.apache.httpcomponents</groupId>
  400. <artifactId>httpclient</artifactId>
  401. <version>${httpclient.version}</version>
  402. </dependency>
  403. <dependency>
  404. <groupId>com.github.xiaoymin</groupId>
  405. <artifactId>knife4j-spring-boot-starter</artifactId>
  406. <version>${knife4j.version}</version>
  407. </dependency>
  408. <!-- <dependency>-->
  409. <!-- <groupId>cn.hutool</groupId>-->
  410. <!-- <artifactId>hutool-all</artifactId>-->
  411. <!-- <version>4.5.11</version>-->
  412. <!-- </dependency>-->
  413. <dependency>
  414. <groupId>com.googlecode.aviator</groupId>
  415. <artifactId>aviator</artifactId>
  416. <version>${aviator.version}</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>com.alibaba</groupId>
  420. <artifactId>transmittable-thread-local</artifactId>
  421. <version>${transmittable.thread.version}</version> <!-- 建议使用最新版�?-->
  422. </dependency>
  423. <!-- mybatis-plus -->
  424. <dependency>
  425. <groupId>com.baomidou</groupId>
  426. <artifactId>mybatis-plus-boot-starter</artifactId>
  427. <version>${mybatis-plus.version}</version>
  428. </dependency>
  429. <!--mysql-->
  430. <dependency>
  431. <groupId>mysql</groupId>
  432. <artifactId>mysql-connector-java</artifactId>
  433. <version>${mysql.connector.version}</version>
  434. </dependency>
  435. <!-- 动态数据源 -->
  436. <dependency>
  437. <groupId>com.baomidou</groupId>
  438. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  439. <version>${datasource.spring.boot.starter}</version>
  440. </dependency>
  441. <!-- <dependency>-->
  442. <!-- <groupId>com.aliyun</groupId>-->
  443. <!-- <artifactId>credentials-java</artifactId>-->
  444. <!-- <version>0.3.4</version>-->
  445. <!-- </dependency>-->
  446. <!-- druid -->
  447. <dependency>
  448. <groupId>com.alibaba</groupId>
  449. <artifactId>druid-spring-boot-starter</artifactId>
  450. <version>${druid.version}</version>
  451. </dependency>
  452. <!-- <dependency>-->
  453. <!-- <groupId>com.aliyun.kms</groupId>-->
  454. <!-- <artifactId>kms-transfer-client</artifactId>-->
  455. <!-- <version>0.1.0</version>-->
  456. <!-- </dependency>-->
  457. <!-- <dependency>-->
  458. <!-- <groupId>com.aliyun</groupId>-->
  459. <!-- <artifactId>sts20150401</artifactId>-->
  460. <!-- <version>1.1.6</version>-->
  461. <!-- </dependency>-->
  462. <!-- Web 相关 -->
  463. <dependency>
  464. <groupId>org.springframework.boot</groupId>
  465. <artifactId>spring-boot-starter-web</artifactId>
  466. <version>2.7.0</version>
  467. <exclusions>
  468. <exclusion>
  469. <groupId>org.springframework</groupId>
  470. <artifactId>spring-web</artifactId>
  471. </exclusion>
  472. </exclusions>
  473. </dependency>
  474. <dependency>
  475. <groupId>com.google.guava</groupId>
  476. <artifactId>guava</artifactId>
  477. <version>${guava.version}</version>
  478. </dependency>
  479. <dependency>
  480. <groupId>org.springdoc</groupId>
  481. <artifactId>springdoc-openapi-ui</artifactId>
  482. <version>${springdoc.version}</version>
  483. </dependency>
  484. </dependencies>
  485. </dependencyManagement>
  486. <build>
  487. <pluginManagement>
  488. <plugins>
  489. <!-- maven-surefire-plugin 插件,用于运行单元测试�?-->
  490. <!-- 注意,需要使�?3.0.X+,因为要支持 Junit 5 版本 -->
  491. <plugin>
  492. <groupId>org.apache.maven.plugins</groupId>
  493. <artifactId>maven-surefire-plugin</artifactId>
  494. <version>${maven-surefire-plugin.version}</version>
  495. </plugin>
  496. <!-- maven-compiler-plugin 插件,解�?spring-boot-configuration-processor + Lombok + MapStruct 组合 -->
  497. <!-- https://stackoverflow.com/questions/33483697/re-run-spring-boot-configuration-annotation-processor-to-update-generated-metada -->
  498. <plugin>
  499. <groupId>org.apache.maven.plugins</groupId>
  500. <artifactId>maven-compiler-plugin</artifactId>
  501. <version>${maven-compiler-plugin.version}</version>
  502. <configuration>
  503. <!-- <configuration>-->
  504. <!-- <source>17</source>-->
  505. <!-- <target>17</target>-->
  506. <!-- </configuration>-->
  507. <!-- <annotationProcessorPaths>-->
  508. <!-- <path>-->
  509. <!-- <groupId>org.springframework.boot</groupId>-->
  510. <!-- <artifactId>spring-boot-configuration-processor</artifactId>-->
  511. <!-- <version>${spring.boot.version}</version>-->
  512. <!-- </path>-->
  513. <!-- <path>-->
  514. <!-- <groupId>org.projectlombok</groupId>-->
  515. <!-- <artifactId>lombok</artifactId>-->
  516. <!-- <version>${lombok.version}</version>-->
  517. <!-- </path>-->
  518. <!-- <path>-->
  519. <!-- <groupId>org.mapstruct</groupId>-->
  520. <!-- <artifactId>mapstruct-processor</artifactId>-->
  521. <!-- <version>${mapstruct.version}</version>-->
  522. <!-- </path>-->
  523. <!-- </annotationProcessorPaths>-->
  524. </configuration>
  525. </plugin>
  526. </plugins>
  527. </pluginManagement>
  528. </build>
  529. <repositories>
  530. <repository>
  531. <id>aliyunmaven</id>
  532. <name>aliyun</name>
  533. <url>https://maven.aliyun.com/repository/public</url>
  534. </repository>
  535. <repository>
  536. <id>spring-milestones</id>
  537. <name>Spring Milestones</name>
  538. <url>https://repo.spring.io/milestone</url>
  539. <snapshots>
  540. <enabled>false</enabled>
  541. </snapshots>
  542. </repository>
  543. <repository>
  544. <id>spring-snapshots</id>
  545. <name>Spring Snapshots</name>
  546. <url>https://repo.spring.io/snapshot</url>
  547. <releases>
  548. <enabled>false</enabled>
  549. </releases>
  550. </repository>
  551. </repositories>
  552. </project>