pom.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.github.luversof</groupId>
  6. <artifactId>bluesky-boot-dependencies</artifactId>
  7. <version>3.2.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>3.2.5</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <java.version>21</java.version>
  17. <spring-cloud-dependencies.version>2023.0.1</spring-cloud-dependencies.version>
  18. <bluesky-boot.version>3.2.0-SNAPSHOT</bluesky-boot.version>
  19. <bluesky-boot-crypto.version>3.2.0-SNAPSHOT</bluesky-boot-crypto.version>
  20. <bluesky-boot-devcheck.version>3.2.0-SNAPSHOT</bluesky-boot-devcheck.version>
  21. <spring-boot-admin-starter.version>3.2.3</spring-boot-admin-starter.version>
  22. <springdoc-openapi.version>2.5.0</springdoc-openapi.version>
  23. <!-- tag:asciidoctor-properties[] -->
  24. <asciidoctor-maven-plugin.version>2.2.6</asciidoctor-maven-plugin.version>
  25. <refdocs.build.directory>${project.build.directory}/refdocs/</refdocs.build.directory>
  26. <asciidoctor.backend>spring-html</asciidoctor.backend>
  27. <asciidoctor.sourceDirectory>${refdocs.build.directory}</asciidoctor.sourceDirectory>
  28. <asciidoctor.outputDirectory>${project.build.directory}/generated-docs</asciidoctor.outputDirectory>
  29. <asciidoctor.preserveDirectories>true</asciidoctor.preserveDirectories>
  30. <asciidoctor.doctype>book</asciidoctor.doctype>
  31. <spring-asciidoctor-backends.version>0.0.7</spring-asciidoctor-backends.version>
  32. <asciidoctorj-diagram.version>2.3.0</asciidoctorj-diagram.version>
  33. <restdocs-api-spec.version>0.19.2</restdocs-api-spec.version>
  34. <restdocs-spec-maven-plugin.version>0.23</restdocs-spec-maven-plugin.version>
  35. <!-- end:asciidoctor-properties[] -->
  36. <jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
  37. <jib-maven-plugin.version>3.4.2</jib-maven-plugin.version>
  38. <properties-maven-plugin.version>1.2.1</properties-maven-plugin.version>
  39. <filecopy-maven-plugin.version>1.0.2</filecopy-maven-plugin.version>
  40. <!-- (s) build properties -->
  41. <build.image>nexus-service:8083/luversof</build.image>
  42. <build.number>LOCAL_BUILD</build.number>
  43. <build.version>${project.version}</build.version>
  44. <!-- (e) build properties -->
  45. <!-- (s) ossrh -->
  46. <maven-gpg-plugin.version>3.2.3</maven-gpg-plugin.version>
  47. <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
  48. <maven-release-plugin.version>3.0.1</maven-release-plugin.version>
  49. <!-- (e) ossrh -->
  50. </properties>
  51. <dependencyManagement>
  52. <dependencies>
  53. <!-- (s) bluesky boot -->
  54. <dependency>
  55. <groupId>io.github.luversof</groupId>
  56. <artifactId>bluesky-boot</artifactId>
  57. <version>${bluesky-boot.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.github.luversof</groupId>
  61. <artifactId>bluesky-boot-autoconfigure</artifactId>
  62. <version>${bluesky-boot.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.github.luversof</groupId>
  66. <artifactId>bluesky-boot-docs</artifactId>
  67. <version>${bluesky-boot.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.github.luversof</groupId>
  71. <artifactId>bluesky-boot-test-autoconfigure</artifactId>
  72. <version>${bluesky-boot.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.github.luversof</groupId>
  76. <artifactId>bluesky-boot-crypto</artifactId>
  77. <version>${bluesky-boot-crypto.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.github.luversof</groupId>
  81. <artifactId>bluesky-boot-devcheck</artifactId>
  82. <version>${bluesky-boot-devcheck.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.github.luversof</groupId>
  86. <artifactId>bluesky-boot-autoconfigure-devcheck</artifactId>
  87. <version>${bluesky-boot-devcheck.version}</version>
  88. </dependency>
  89. <!-- (e) bluesky boot -->
  90. <!-- (s) spring cloud -->
  91. <!-- 버전관리를 편하게 하려고 cloud 의존성을 여기서 관리하고 있으나 분리하는 것이 좋다. -->
  92. <dependency>
  93. <groupId>org.springframework.cloud</groupId>
  94. <artifactId>spring-cloud-dependencies</artifactId>
  95. <version>${spring-cloud-dependencies.version}</version>
  96. <type>pom</type>
  97. <scope>import</scope>
  98. </dependency>
  99. <!-- (e) spring cloud -->
  100. <!-- (s) mybatis -->
  101. <dependency>
  102. <groupId>org.mybatis.spring.boot</groupId>
  103. <artifactId>mybatis-spring-boot-starter</artifactId>
  104. <version>3.0.3</version>
  105. </dependency>
  106. <!-- (e) mybatis -->
  107. <!-- (s) boot-admin -->
  108. <dependency>
  109. <groupId>de.codecentric</groupId>
  110. <artifactId>spring-boot-admin-starter-server</artifactId>
  111. <version>${spring-boot-admin-starter.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>de.codecentric</groupId>
  115. <artifactId>spring-boot-admin-starter-client</artifactId>
  116. <version>${spring-boot-admin-starter.version}</version>
  117. </dependency>
  118. <!-- (e) boot-admin -->
  119. <!-- (s) springdoc-openapi -->
  120. <dependency>
  121. <groupId>org.springdoc</groupId>
  122. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  123. <version>${springdoc-openapi.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springdoc</groupId>
  127. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  128. <version>${springdoc-openapi.version}</version>
  129. </dependency>
  130. <!-- (e) springdoc-openapi -->
  131. <!-- (s) thymeleaf-layout-dialect -->
  132. <dependency>
  133. <groupId>com.github.zhanhb</groupId>
  134. <artifactId>thymeleaf-layout-dialect</artifactId>
  135. <version>3.2.0</version>
  136. </dependency>
  137. <!-- (e) thymeleaf-layout-dialect -->
  138. <!-- (s) restdocs-api-spec -->
  139. <dependency>
  140. <groupId>com.epages</groupId>
  141. <artifactId>restdocs-api-spec-mockmvc</artifactId>
  142. <version>${restdocs-api-spec.version}</version>
  143. </dependency>
  144. <!-- (e) restdocs-api-spec -->
  145. </dependencies>
  146. </dependencyManagement>
  147. <build>
  148. <resources>
  149. <resource>
  150. <directory>src/main/java</directory>
  151. <includes>
  152. <include>**/*.xml</include>
  153. </includes>
  154. </resource>
  155. <resource>
  156. <directory>src/main/resources</directory>
  157. <filtering>true</filtering>
  158. </resource>
  159. </resources>
  160. <pluginManagement>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-maven-plugin</artifactId>
  165. <executions>
  166. <execution>
  167. <goals>
  168. <goal>build-info</goal>
  169. </goals>
  170. <configuration>
  171. <additionalProperties>
  172. <buildNumber>${build.number}</buildNumber>
  173. </additionalProperties>
  174. </configuration>
  175. </execution>
  176. </executions>
  177. </plugin>
  178. <!-- (s) sonarqube plugin -->
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-surefire-plugin</artifactId>
  182. <version>${maven-surefire-plugin.version}</version>
  183. <configuration>
  184. <includes>
  185. <include>**/*Test.java</include>
  186. <include>**/*Tests.java</include>
  187. </includes>
  188. </configuration>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.jacoco</groupId>
  192. <artifactId>jacoco-maven-plugin</artifactId>
  193. <version>${jacoco-maven-plugin.version}</version>
  194. <executions>
  195. <execution>
  196. <id>prepare-agent</id>
  197. <goals>
  198. <goal>prepare-agent</goal>
  199. </goals>
  200. </execution>
  201. <execution>
  202. <id>report</id>
  203. <phase>test</phase>
  204. <goals>
  205. <goal>report</goal>
  206. </goals>
  207. </execution>
  208. </executions>
  209. </plugin>
  210. <!-- (e) sonarqube plugin -->
  211. <!-- (s) asciidoctor plugin -->
  212. <plugin>
  213. <groupId>org.apache.maven.plugins</groupId>
  214. <artifactId>maven-resources-plugin</artifactId>
  215. <executions>
  216. <execution>
  217. <id>copy-asciidoc-resources</id>
  218. <phase>generate-resources</phase>
  219. <goals>
  220. <goal>copy-resources</goal>
  221. </goals>
  222. <configuration>
  223. <outputDirectory>${refdocs.build.directory}</outputDirectory>
  224. <resources>
  225. <resource>
  226. <directory>src/main/asciidoc</directory>
  227. <filtering>false</filtering>
  228. </resource>
  229. </resources>
  230. </configuration>
  231. </execution>
  232. </executions>
  233. <configuration>
  234. <nonFilteredFileExtensions>
  235. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  236. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  237. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  238. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  239. <nonFilteredFileExtension>otf</nonFilteredFileExtension>
  240. </nonFilteredFileExtensions>
  241. </configuration>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.asciidoctor</groupId>
  245. <artifactId>asciidoctor-maven-plugin</artifactId>
  246. <version>${asciidoctor-maven-plugin.version}</version>
  247. <dependencies>
  248. <dependency>
  249. <groupId>org.asciidoctor</groupId>
  250. <artifactId>asciidoctorj-diagram</artifactId>
  251. <version>${asciidoctorj-diagram.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.springframework.restdocs</groupId>
  255. <artifactId>spring-restdocs-asciidoctor</artifactId>
  256. <version>${spring-restdocs.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>io.spring.asciidoctor.backends</groupId>
  260. <artifactId>spring-asciidoctor-backends</artifactId>
  261. <version>${spring-asciidoctor-backends.version}</version>
  262. </dependency>
  263. </dependencies>
  264. <configuration>
  265. <requires>
  266. <require>asciidoctor-diagram</require>
  267. </requires>
  268. </configuration>
  269. <executions>
  270. <execution>
  271. <id>generate-html-documentation</id>
  272. <phase>prepare-package</phase>
  273. <goals>
  274. <goal>process-asciidoc</goal>
  275. </goals>
  276. </execution>
  277. </executions>
  278. </plugin>
  279. <plugin>
  280. <groupId>io.github.berkleytechnologyservices</groupId>
  281. <artifactId>restdocs-spec-maven-plugin</artifactId>
  282. <version>${restdocs-spec-maven-plugin.version}</version>
  283. <executions>
  284. <execution>
  285. <goals>
  286. <goal>generate</goal>
  287. </goals>
  288. <configuration>
  289. <specification>OPENAPI_V3</specification>
  290. </configuration>
  291. </execution>
  292. </executions>
  293. </plugin>
  294. <!-- (e) asciidoctor plugin -->
  295. <plugin>
  296. <groupId>com.google.cloud.tools</groupId>
  297. <artifactId>jib-maven-plugin</artifactId>
  298. <version>${jib-maven-plugin.version}</version>
  299. <executions>
  300. <execution>
  301. <phase>package</phase>
  302. <goals>
  303. <goal>build</goal>
  304. </goals>
  305. </execution>
  306. </executions>
  307. <configuration>
  308. <container>
  309. <creationTime>USE_CURRENT_TIMESTAMP</creationTime>
  310. </container>
  311. <from>
  312. <image>eclipse-temurin:${java.version}-jre-alpine</image>
  313. </from>
  314. <to>
  315. <image>${build.image}/${project.artifactId}</image>
  316. <tags>
  317. <tag>${project.version}.${build.number}</tag>
  318. </tags>
  319. </to>
  320. </configuration>
  321. </plugin>
  322. <plugin>
  323. <groupId>org.codehaus.mojo</groupId>
  324. <artifactId>properties-maven-plugin</artifactId>
  325. <version>${properties-maven-plugin.version}</version>
  326. <configuration>
  327. <outputFile>
  328. build.properties
  329. </outputFile>
  330. </configuration>
  331. </plugin>
  332. <plugin>
  333. <groupId>io.github.luversof</groupId>
  334. <artifactId>filecopy-maven-plugin</artifactId>
  335. <version>${filecopy-maven-plugin.version}</version>
  336. <executions>
  337. <execution>
  338. <id>filecopy</id>
  339. <phase>generate-sources</phase>
  340. <goals>
  341. <goal>filecopy</goal>
  342. </goals>
  343. <configuration>
  344. <fileInfos>
  345. <fileInfo>
  346. <sourceRegex>^([a-zA-Z]*)(_zh-TW.properties)$</sourceRegex>
  347. <targetRegex>$1_zh.properties</targetRegex>
  348. </fileInfo>
  349. </fileInfos>
  350. </configuration>
  351. </execution>
  352. </executions>
  353. </plugin>
  354. </plugins>
  355. </pluginManagement>
  356. </build>
  357. <profiles>
  358. <profile>
  359. <id>sonarqube</id>
  360. <activation>
  361. <activeByDefault>true</activeByDefault>
  362. </activation>
  363. <build>
  364. <plugins>
  365. <plugin>
  366. <groupId>org.apache.maven.plugins</groupId>
  367. <artifactId>maven-surefire-plugin</artifactId>
  368. </plugin>
  369. <plugin>
  370. <groupId>org.jacoco</groupId>
  371. <artifactId>jacoco-maven-plugin</artifactId>
  372. </plugin>
  373. </plugins>
  374. </build>
  375. </profile>
  376. <profile>
  377. <id>asciidoctor</id>
  378. <build>
  379. <plugins>
  380. <plugin>
  381. <groupId>org.apache.maven.plugins</groupId>
  382. <artifactId>maven-resources-plugin</artifactId>
  383. </plugin>
  384. <plugin>
  385. <groupId>org.asciidoctor</groupId>
  386. <artifactId>asciidoctor-maven-plugin</artifactId>
  387. </plugin>
  388. <plugin>
  389. <groupId>io.github.berkleytechnologyservices</groupId>
  390. <artifactId>restdocs-spec-maven-plugin</artifactId>
  391. </plugin>
  392. </plugins>
  393. </build>
  394. </profile>
  395. <profile>
  396. <id>nexus-local</id>
  397. <repositories>
  398. <repository>
  399. <id>bluesky-nexus-docker</id>
  400. <url>http://nexus.bluesky.local/repository/maven-public/</url>
  401. <releases>
  402. <enabled>true</enabled>
  403. </releases>
  404. <snapshots>
  405. <enabled>true</enabled>
  406. <updatePolicy>always</updatePolicy>
  407. </snapshots>
  408. </repository>
  409. </repositories>
  410. <distributionManagement>
  411. <repository>
  412. <id>bluesky-releases</id>
  413. <url>http://nexus.bluesky.local/repository/maven-releases/</url>
  414. </repository>
  415. <snapshotRepository>
  416. <id>bluesky-snapshots</id>
  417. <url>http://nexus.bluesky.local/repository/maven-snapshots/</url>
  418. </snapshotRepository>
  419. </distributionManagement>
  420. </profile>
  421. <profile>
  422. <id>nexus-docker</id>
  423. <repositories>
  424. <repository>
  425. <id>bluesky-nexus-docker</id>
  426. <url>http://nexus:8082/repository/maven-public/</url>
  427. <releases>
  428. <enabled>true</enabled>
  429. </releases>
  430. <snapshots>
  431. <enabled>true</enabled>
  432. <updatePolicy>always</updatePolicy>
  433. </snapshots>
  434. </repository>
  435. </repositories>
  436. <distributionManagement>
  437. <repository>
  438. <id>bluesky-releases</id>
  439. <url>http://nexus:8082/repository/maven-releases/</url>
  440. </repository>
  441. <snapshotRepository>
  442. <id>bluesky-snapshots</id>
  443. <url>http://nexus:8082/repository/maven-snapshots/</url>
  444. </snapshotRepository>
  445. </distributionManagement>
  446. </profile>
  447. <profile>
  448. <id>nexus-k8s</id>
  449. <repositories>
  450. <repository>
  451. <id>bluesky-nexus-k8s</id>
  452. <url>http://nexus-service:8082/repository/maven-public/</url>
  453. <releases>
  454. <enabled>true</enabled>
  455. </releases>
  456. <snapshots>
  457. <enabled>true</enabled>
  458. <updatePolicy>always</updatePolicy>
  459. </snapshots>
  460. </repository>
  461. </repositories>
  462. <distributionManagement>
  463. <repository>
  464. <id>bluesky-releases</id>
  465. <url>http://nexus-service:8082/repository/maven-releases/</url>
  466. </repository>
  467. <snapshotRepository>
  468. <id>bluesky-snapshots</id>
  469. <url>http://nexus-service:8082/repository/maven-snapshots/</url>
  470. </snapshotRepository>
  471. </distributionManagement>
  472. </profile>
  473. <profile>
  474. <id>ossrh</id>
  475. <build>
  476. <plugins>
  477. <plugin>
  478. <groupId>org.apache.maven.plugins</groupId>
  479. <artifactId>maven-compiler-plugin</artifactId>
  480. <configuration>
  481. <annotationProcessorPaths>
  482. <path>
  483. <groupId>org.mapstruct</groupId>
  484. <artifactId>mapstruct-processor</artifactId>
  485. <version>1.5.5.Final</version>
  486. </path>
  487. <path>
  488. <groupId>org.projectlombok</groupId>
  489. <artifactId>lombok</artifactId>
  490. <version>${lombok.version}</version>
  491. </path>
  492. <path>
  493. <groupId>org.projectlombok</groupId>
  494. <artifactId>lombok-mapstruct-binding</artifactId>
  495. <version>0.2.0</version>
  496. </path>
  497. </annotationProcessorPaths>
  498. </configuration>
  499. </plugin>
  500. <plugin>
  501. <groupId>org.apache.maven.plugins</groupId>
  502. <artifactId>maven-source-plugin</artifactId>
  503. <executions>
  504. <execution>
  505. <id>attach-sources</id>
  506. <goals>
  507. <goal>jar-no-fork</goal>
  508. </goals>
  509. </execution>
  510. </executions>
  511. </plugin>
  512. <plugin>
  513. <groupId>org.apache.maven.plugins</groupId>
  514. <artifactId>maven-javadoc-plugin</artifactId>
  515. <executions>
  516. <execution>
  517. <id>attach-javadocs</id>
  518. <goals>
  519. <goal>jar</goal>
  520. </goals>
  521. </execution>
  522. </executions>
  523. </plugin>
  524. <plugin>
  525. <groupId>org.apache.maven.plugins</groupId>
  526. <artifactId>maven-gpg-plugin</artifactId>
  527. <version>${maven-gpg-plugin.version}</version>
  528. <executions>
  529. <execution>
  530. <id>sign-artifacts</id>
  531. <phase>verify</phase>
  532. <goals>
  533. <goal>sign</goal>
  534. </goals>
  535. </execution>
  536. </executions>
  537. </plugin>
  538. <plugin>
  539. <groupId>org.sonatype.plugins</groupId>
  540. <artifactId>nexus-staging-maven-plugin</artifactId>
  541. <version>${nexus-staging-maven-plugin.version}</version>
  542. <extensions>true</extensions>
  543. <configuration>
  544. <serverId>ossrh</serverId>
  545. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  546. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  547. </configuration>
  548. </plugin>
  549. <plugin>
  550. <groupId>org.apache.maven.plugins</groupId>
  551. <artifactId>maven-release-plugin</artifactId>
  552. <version>${maven-release-plugin.version}</version>
  553. <configuration>
  554. <autoVersionSubmodules>true</autoVersionSubmodules>
  555. <useReleaseProfile>false</useReleaseProfile>
  556. <releaseProfiles>release</releaseProfiles>
  557. <goals>deploy</goals>
  558. </configuration>
  559. </plugin>
  560. </plugins>
  561. </build>
  562. <distributionManagement>
  563. <snapshotRepository>
  564. <id>ossrh</id>
  565. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  566. </snapshotRepository>
  567. <repository>
  568. <id>ossrh</id>
  569. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  570. </repository>
  571. </distributionManagement>
  572. </profile>
  573. </profiles>
  574. <repositories>
  575. <repository>
  576. <id>maven-snapshots</id>
  577. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  578. <snapshots />
  579. <releases>
  580. <enabled>false</enabled>
  581. </releases>
  582. </repository>
  583. <repository>
  584. <id>spring-snapshots</id>
  585. <url>https://repo.spring.io/snapshot</url>
  586. <snapshots />
  587. <releases>
  588. <enabled>false</enabled>
  589. </releases>
  590. </repository>
  591. <repository>
  592. <id>spring-milestones</id>
  593. <url>https://repo.spring.io/milestone</url>
  594. <snapshots>
  595. <enabled>false</enabled>
  596. </snapshots>
  597. </repository>
  598. <repository>
  599. <id>spring-releases</id>
  600. <url>https://repo.spring.io/release</url>
  601. <snapshots>
  602. <enabled>false</enabled>
  603. </snapshots>
  604. </repository>
  605. <repository>
  606. <id>netflix-candidates</id>
  607. <name>Netflix Candidates</name>
  608. <url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
  609. <snapshots>
  610. <enabled>false</enabled>
  611. </snapshots>
  612. </repository>
  613. </repositories>
  614. <pluginRepositories>
  615. <pluginRepository>
  616. <id>spring-snapshots</id>
  617. <url>https://repo.spring.io/snapshot</url>
  618. <snapshots />
  619. <releases>
  620. <enabled>false</enabled>
  621. </releases>
  622. </pluginRepository>
  623. <pluginRepository>
  624. <id>spring-milestones</id>
  625. <url>https://repo.spring.io/milestone</url>
  626. <snapshots>
  627. <enabled>false</enabled>
  628. </snapshots>
  629. </pluginRepository>
  630. <pluginRepository>
  631. <id>spring-releases</id>
  632. <url>https://repo.spring.io/release</url>
  633. <snapshots>
  634. <enabled>false</enabled>
  635. </snapshots>
  636. </pluginRepository>
  637. </pluginRepositories>
  638. </project>