pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2023 Apollo Authors
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. ~
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <groupId>com.ctrip.framework.apollo</groupId>
  22. <artifactId>apollo</artifactId>
  23. <version>${revision}</version>
  24. <name>Apollo</name>
  25. <packaging>pom</packaging>
  26. <description>Configuration Center</description>
  27. <url>https://github.com/apolloconfig/apollo</url>
  28. <licenses>
  29. <license>
  30. <name>Apache License, Version 2.0</name>
  31. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  32. </license>
  33. </licenses>
  34. <scm>
  35. <url>https://github.com/apolloconfig/apollo</url>
  36. <connection>scm:git:git@github.com:apolloconfig/apollo.git</connection>
  37. <developerConnection>scm:git:ssh://git@github.com:apolloconfig/apollo.git</developerConnection>
  38. </scm>
  39. <ciManagement>
  40. <system>GitHub Actions</system>
  41. <url>https://github.com/apolloconfig/apollo/actions</url>
  42. </ciManagement>
  43. <issueManagement>
  44. <system>github</system>
  45. <url>https://github.com/apolloconfig/apollo/issues</url>
  46. </issueManagement>
  47. <developers>
  48. <developer>
  49. <id>apollo</id>
  50. <name>The Apollo Project Contributors</name>
  51. <email>apollo-config@googlegroups.com</email>
  52. <url>https://www.apolloconfig.com/</url>
  53. </developer>
  54. </developers>
  55. <properties>
  56. <revision>2.2.0-SNAPSHOT</revision>
  57. <java.version>1.8</java.version>
  58. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59. <apollo-java.version>2.1.0</apollo-java.version>
  60. <spring-boot.version>2.7.9</spring-boot.version>
  61. <spring-cloud.version>2021.0.5</spring-cloud.version>
  62. <!-- sort by alphabet -->
  63. <awaitility.version>4.2.0</awaitility.version>
  64. <common-lang3.version>3.12.0</common-lang3.version>
  65. <gson.version>2.10.1</gson.version>
  66. <guava.version>31.1-jre</guava.version>
  67. <javassist.version>3.23.1-GA</javassist.version>
  68. <javax.activation.version>1.1.1</javax.activation.version>
  69. <javax.mail.version>1.6.2</javax.mail.version>
  70. <jaxb.version>2.3.1</jaxb.version>
  71. <junit.version>5.9.2</junit.version>
  72. <nacos-discovery-api.version>1.4.0</nacos-discovery-api.version>
  73. <!-- database driver -->
  74. <mysql-connector-j.version>8.0.32</mysql-connector-j.version>
  75. <postgre.version>42.5.3</postgre.version>
  76. <!-- Plugins Version sort by alphabet -->
  77. <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
  78. <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
  79. <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
  80. <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
  81. <maven-install-plugin.version>2.5.2</maven-install-plugin.version>
  82. <maven-jacoco-plugin.version>0.8.8</maven-jacoco-plugin.version>
  83. <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
  84. <maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
  85. <maven-war-plugin.version>3.3.2</maven-war-plugin.version>
  86. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  87. <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
  88. </properties>
  89. <modules>
  90. <module>apollo-buildtools</module>
  91. <module>apollo-common</module>
  92. <module>apollo-biz</module>
  93. <module>apollo-configservice</module>
  94. <module>apollo-adminservice</module>
  95. <module>apollo-portal</module>
  96. <module>apollo-assembly</module>
  97. </modules>
  98. <dependencyManagement>
  99. <dependencies>
  100. <dependency>
  101. <groupId>com.ctrip.framework.apollo</groupId>
  102. <artifactId>apollo-core</artifactId>
  103. <version>${apollo-java.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.ctrip.framework.apollo</groupId>
  107. <artifactId>apollo-common</artifactId>
  108. <version>${project.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.ctrip.framework.apollo</groupId>
  112. <artifactId>apollo-biz</artifactId>
  113. <version>${project.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.ctrip.framework.apollo</groupId>
  117. <artifactId>apollo-buildtools</artifactId>
  118. <version>${project.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.ctrip.framework.apollo</groupId>
  122. <artifactId>apollo-configservice</artifactId>
  123. <version>${project.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.ctrip.framework.apollo</groupId>
  127. <artifactId>apollo-adminservice</artifactId>
  128. <version>${project.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.ctrip.framework.apollo</groupId>
  132. <artifactId>apollo-portal</artifactId>
  133. <version>${project.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.ctrip.framework.apollo</groupId>
  137. <artifactId>apollo-openapi</artifactId>
  138. <version>${apollo-java.version}</version>
  139. </dependency>
  140. <!--third party -->
  141. <dependency>
  142. <groupId>com.google.guava</groupId>
  143. <artifactId>guava</artifactId>
  144. <version>${guava.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.google.code.gson</groupId>
  148. <artifactId>gson</artifactId>
  149. <version>${gson.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.mysql</groupId>
  153. <artifactId>mysql-connector-j</artifactId>
  154. <version>${mysql-connector-j.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.postgresql</groupId>
  158. <artifactId>postgresql</artifactId>
  159. <version>${postgre.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.google.inject</groupId>
  163. <artifactId>guice</artifactId>
  164. <version>5.0.1</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.commons</groupId>
  168. <artifactId>commons-lang3</artifactId>
  169. <version>${common-lang3.version}</version>
  170. </dependency>
  171. <!-- to fix CVE-2022-41966 -->
  172. <dependency>
  173. <groupId>com.thoughtworks.xstream</groupId>
  174. <artifactId>xstream</artifactId>
  175. <version>1.4.20</version>
  176. </dependency>
  177. <!--for test -->
  178. <dependency>
  179. <groupId>org.awaitility</groupId>
  180. <artifactId>awaitility</artifactId>
  181. <version>${awaitility.version}</version>
  182. <scope>test</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.junit.vintage</groupId>
  186. <artifactId>junit-vintage-engine</artifactId>
  187. <version>${junit.version}</version>
  188. <scope>test</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.github.stefanbirkner</groupId>
  192. <artifactId>system-lambda</artifactId>
  193. <version>1.2.0</version>
  194. <scope>test</scope>
  195. </dependency>
  196. <!-- declare Spring BOMs in order -->
  197. <dependency>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-dependencies</artifactId>
  200. <version>${spring-boot.version}</version>
  201. <type>pom</type>
  202. <scope>import</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.springframework.cloud</groupId>
  206. <artifactId>spring-cloud-dependencies</artifactId>
  207. <version>${spring-cloud.version}</version>
  208. <type>pom</type>
  209. <scope>import</scope>
  210. </dependency>
  211. <!-- required by eureka -->
  212. <dependency>
  213. <groupId>com.sun.jersey.contribs</groupId>
  214. <artifactId>jersey-apache-client4</artifactId>
  215. <version>1.19.4</version>
  216. </dependency>
  217. <!-- JDK 1.8+ -->
  218. <dependency>
  219. <groupId>javax.xml.bind</groupId>
  220. <artifactId>jaxb-api</artifactId>
  221. <version>${jaxb.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>com.sun.xml.bind</groupId>
  225. <artifactId>jaxb-impl</artifactId>
  226. <version>${jaxb.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.glassfish.jaxb</groupId>
  230. <artifactId>jaxb-runtime</artifactId>
  231. <version>${jaxb.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>javax.activation</groupId>
  235. <artifactId>activation</artifactId>
  236. <version>${javax.activation.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.sun.mail</groupId>
  240. <artifactId>javax.mail</artifactId>
  241. <version>${javax.mail.version}</version>
  242. </dependency>
  243. <!-- JDK 11+ -->
  244. <dependency>
  245. <groupId>org.javassist</groupId>
  246. <artifactId>javassist</artifactId>
  247. <version>${javassist.version}</version>
  248. </dependency>
  249. <!-- end of JDK 11+ -->
  250. </dependencies>
  251. </dependencyManagement>
  252. <dependencies>
  253. <dependency>
  254. <groupId>org.springframework.boot</groupId>
  255. <artifactId>spring-boot-starter-test</artifactId>
  256. <scope>test</scope>
  257. <exclusions>
  258. <exclusion>
  259. <artifactId>spring-boot-starter</artifactId>
  260. <groupId>org.springframework.boot</groupId>
  261. </exclusion>
  262. </exclusions>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.awaitility</groupId>
  266. <artifactId>awaitility</artifactId>
  267. <scope>test</scope>
  268. </dependency>
  269. <!-- for junit 4 -->
  270. <dependency>
  271. <groupId>org.junit.vintage</groupId>
  272. <artifactId>junit-vintage-engine</artifactId>
  273. <scope>test</scope>
  274. <exclusions>
  275. <exclusion>
  276. <groupId>org.hamcrest</groupId>
  277. <artifactId>hamcrest-core</artifactId>
  278. </exclusion>
  279. </exclusions>
  280. </dependency>
  281. </dependencies>
  282. <build>
  283. <pluginManagement>
  284. <plugins>
  285. <plugin>
  286. <groupId>org.apache.maven.plugins</groupId>
  287. <artifactId>maven-compiler-plugin</artifactId>
  288. <version>${maven-compiler-plugin.version}</version>
  289. <configuration>
  290. <source>${java.version}</source>
  291. <target>${java.version}</target>
  292. <encoding>${project.build.sourceEncoding}</encoding>
  293. </configuration>
  294. </plugin>
  295. <plugin>
  296. <groupId>org.apache.maven.plugins</groupId>
  297. <artifactId>maven-surefire-plugin</artifactId>
  298. <version>${maven-surefire-plugin.version}</version>
  299. </plugin>
  300. <plugin>
  301. <groupId>org.apache.maven.plugins</groupId>
  302. <artifactId>maven-source-plugin</artifactId>
  303. <version>${maven-source-plugin.version}</version>
  304. <executions>
  305. <execution>
  306. <id>attach-sources</id>
  307. <goals>
  308. <goal>jar-no-fork</goal>
  309. </goals>
  310. </execution>
  311. </executions>
  312. </plugin>
  313. <plugin>
  314. <groupId>org.apache.maven.plugins</groupId>
  315. <artifactId>maven-jar-plugin</artifactId>
  316. <version>${maven-jar-plugin.version}</version>
  317. </plugin>
  318. <plugin>
  319. <artifactId>maven-javadoc-plugin</artifactId>
  320. <version>${maven-javadoc-plugin.version}</version>
  321. <executions>
  322. <execution>
  323. <id>attach-javadoc</id>
  324. <goals>
  325. <goal>jar</goal>
  326. </goals>
  327. <configuration>
  328. <doclint>none</doclint>
  329. </configuration>
  330. </execution>
  331. </executions>
  332. <configuration>
  333. <show>public</show>
  334. <charset>UTF-8</charset>
  335. <encoding>UTF-8</encoding>
  336. <docencoding>UTF-8</docencoding>
  337. <links>
  338. <link>http://docs.oracle.com/javase/7/docs/api</link>
  339. </links>
  340. </configuration>
  341. </plugin>
  342. <plugin>
  343. <groupId>org.apache.maven.plugins</groupId>
  344. <artifactId>maven-war-plugin</artifactId>
  345. <version>${maven-war-plugin.version}</version>
  346. </plugin>
  347. <plugin>
  348. <groupId>org.apache.maven.plugins</groupId>
  349. <artifactId>maven-install-plugin</artifactId>
  350. <version>${maven-install-plugin.version}</version>
  351. </plugin>
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-deploy-plugin</artifactId>
  355. <version>${maven-deploy-plugin.version}</version>
  356. </plugin>
  357. <plugin>
  358. <groupId>org.apache.maven.plugins</groupId>
  359. <artifactId>maven-gpg-plugin</artifactId>
  360. <version>${maven-gpg-plugin.version}</version>
  361. <configuration>
  362. <!-- Prevent gpg from using pinentry programs -->
  363. <gpgArguments>
  364. <arg>--pinentry-mode</arg>
  365. <arg>loopback</arg>
  366. </gpgArguments>
  367. </configuration>
  368. <executions>
  369. <execution>
  370. <phase>verify</phase>
  371. <goals>
  372. <goal>sign</goal>
  373. </goals>
  374. </execution>
  375. </executions>
  376. </plugin>
  377. <plugin>
  378. <groupId>org.springframework.boot</groupId>
  379. <artifactId>spring-boot-maven-plugin</artifactId>
  380. <version>${spring-boot.version}</version>
  381. <configuration>
  382. <executable>true</executable>
  383. <attach>false</attach>
  384. </configuration>
  385. <executions>
  386. <execution>
  387. <goals>
  388. <goal>repackage</goal>
  389. </goals>
  390. </execution>
  391. </executions>
  392. </plugin>
  393. <plugin>
  394. <groupId>org.codehaus.mojo</groupId>
  395. <artifactId>findbugs-maven-plugin</artifactId>
  396. <version>3.0.3</version>
  397. <configuration>
  398. <xmlOutput>true</xmlOutput>
  399. <effort>Max</effort>
  400. <threshold>Low</threshold>
  401. <failOnError>false</failOnError>
  402. </configuration>
  403. </plugin>
  404. <plugin>
  405. <groupId>org.codehaus.mojo</groupId>
  406. <artifactId>cobertura-maven-plugin</artifactId>
  407. <version>2.7</version>
  408. <dependencies>
  409. <dependency>
  410. <groupId>ch.qos.logback</groupId>
  411. <artifactId>logback-classic</artifactId>
  412. <version>1.2.0</version>
  413. </dependency>
  414. </dependencies>
  415. </plugin>
  416. <plugin>
  417. <groupId>org.apache.maven.plugins</groupId>
  418. <artifactId>maven-assembly-plugin</artifactId>
  419. <version>${maven-assembly-plugin.version}</version>
  420. </plugin>
  421. <plugin>
  422. <groupId>org.codehaus.mojo</groupId>
  423. <artifactId>versions-maven-plugin</artifactId>
  424. <version>2.2</version>
  425. </plugin>
  426. <plugin>
  427. <groupId>pl.project13.maven</groupId>
  428. <artifactId>git-commit-id-plugin</artifactId>
  429. <version>2.2.6</version>
  430. <executions>
  431. <execution>
  432. <goals>
  433. <goal>revision</goal>
  434. </goals>
  435. </execution>
  436. </executions>
  437. <configuration>
  438. <verbose>true</verbose>
  439. <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
  440. <generateGitPropertiesFile>true</generateGitPropertiesFile>
  441. <generateGitPropertiesFilename>${project.build.outputDirectory}/apollo-git.properties</generateGitPropertiesFilename>
  442. <failOnNoGitDirectory>false</failOnNoGitDirectory>
  443. </configuration>
  444. </plugin>
  445. <plugin>
  446. <groupId>org.codehaus.mojo</groupId>
  447. <artifactId>flatten-maven-plugin</artifactId>
  448. <version>1.1.0</version>
  449. <configuration>
  450. <updatePomFile>true</updatePomFile>
  451. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  452. </configuration>
  453. <executions>
  454. <execution>
  455. <id>flatten</id>
  456. <phase>process-resources</phase>
  457. <goals>
  458. <goal>flatten</goal>
  459. </goals>
  460. </execution>
  461. <execution>
  462. <id>flatten.clean</id>
  463. <phase>clean</phase>
  464. <goals>
  465. <goal>clean</goal>
  466. </goals>
  467. </execution>
  468. </executions>
  469. </plugin>
  470. <!-- Need to set releases.repo and snapshots.repo properties in your .m2/settings.xml -->
  471. </plugins>
  472. </pluginManagement>
  473. <plugins>
  474. <plugin>
  475. <groupId>org.apache.maven.plugins</groupId>
  476. <artifactId>maven-compiler-plugin</artifactId>
  477. </plugin>
  478. <plugin>
  479. <groupId>org.apache.maven.plugins</groupId>
  480. <artifactId>maven-surefire-plugin</artifactId>
  481. <configuration>
  482. <trimStackTrace>false</trimStackTrace>
  483. </configuration>
  484. </plugin>
  485. <plugin>
  486. <groupId>org.apache.maven.plugins</groupId>
  487. <artifactId>maven-source-plugin</artifactId>
  488. </plugin>
  489. <plugin>
  490. <groupId>org.apache.maven.plugins</groupId>
  491. <artifactId>maven-war-plugin</artifactId>
  492. </plugin>
  493. <plugin>
  494. <groupId>org.apache.maven.plugins</groupId>
  495. <artifactId>maven-install-plugin</artifactId>
  496. </plugin>
  497. <plugin>
  498. <groupId>org.apache.maven.plugins</groupId>
  499. <artifactId>maven-deploy-plugin</artifactId>
  500. </plugin>
  501. <plugin>
  502. <groupId>org.codehaus.mojo</groupId>
  503. <artifactId>findbugs-maven-plugin</artifactId>
  504. </plugin>
  505. <plugin>
  506. <groupId>org.codehaus.mojo</groupId>
  507. <artifactId>versions-maven-plugin</artifactId>
  508. </plugin>
  509. <plugin>
  510. <groupId>org.apache.maven.plugins</groupId>
  511. <artifactId>maven-jar-plugin</artifactId>
  512. <configuration>
  513. <archive>
  514. <manifest>
  515. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  516. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  517. </manifest>
  518. </archive>
  519. </configuration>
  520. </plugin>
  521. <plugin>
  522. <groupId>pl.project13.maven</groupId>
  523. <artifactId>git-commit-id-plugin</artifactId>
  524. </plugin>
  525. <plugin>
  526. <groupId>org.codehaus.mojo</groupId>
  527. <artifactId>flatten-maven-plugin</artifactId>
  528. </plugin>
  529. <plugin>
  530. <groupId>org.jacoco</groupId>
  531. <artifactId>jacoco-maven-plugin</artifactId>
  532. <version>${maven-jacoco-plugin.version}</version>
  533. <executions>
  534. <execution>
  535. <id>prepare-agent</id>
  536. <goals>
  537. <goal>prepare-agent</goal>
  538. </goals>
  539. </execution>
  540. </executions>
  541. </plugin>
  542. </plugins>
  543. <resources>
  544. <resource>
  545. <directory>src/main/resources</directory>
  546. <filtering>true</filtering>
  547. <includes>
  548. <include>**/*.yml</include>
  549. <include>**/*.yaml</include>
  550. <include>**/*.properties</include>
  551. <include>**/*.xml</include>
  552. </includes>
  553. </resource>
  554. <resource>
  555. <directory>src/main/resources</directory>
  556. <filtering>false</filtering>
  557. <excludes>
  558. <exclude>**/*.yml</exclude>
  559. <exclude>**/*.yaml</exclude>
  560. <exclude>**/*.properties</exclude>
  561. <exclude>**/*.xml</exclude>
  562. </excludes>
  563. </resource>
  564. </resources>
  565. </build>
  566. <profiles>
  567. <profile>
  568. <!-- for open source usage -->
  569. <id>github</id>
  570. <properties>
  571. <package.environment>github</package.environment>
  572. </properties>
  573. <activation>
  574. <activeByDefault>true</activeByDefault>
  575. </activation>
  576. </profile>
  577. <profile>
  578. <id>nacos-discovery</id>
  579. <properties>
  580. <nacos.discovery.version>0.2.12</nacos.discovery.version>
  581. <fastjson.version>1.2.83</fastjson.version>
  582. </properties>
  583. <dependencyManagement>
  584. <dependencies>
  585. <dependency>
  586. <groupId>com.alibaba.boot</groupId>
  587. <artifactId>nacos-discovery-spring-boot-starter</artifactId>
  588. <version>${nacos.discovery.version}</version>
  589. </dependency>
  590. <dependency>
  591. <groupId>com.alibaba</groupId>
  592. <artifactId>fastjson</artifactId>
  593. <version>${fastjson.version}</version>
  594. </dependency>
  595. </dependencies>
  596. </dependencyManagement>
  597. </profile>
  598. </profiles>
  599. <repositories>
  600. <!-- for apollo-core and apollo-openapi snapshot versions -->
  601. <repository>
  602. <id>sonatype-nexus-snapshots</id>
  603. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  604. <releases>
  605. <enabled>false</enabled>
  606. </releases>
  607. <snapshots>
  608. <enabled>true</enabled>
  609. </snapshots>
  610. </repository>
  611. </repositories>
  612. </project>