pom.xml 23 KB

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