1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

format reference doc

This commit is contained in:
flystar32 2018-12-17 17:34:58 +08:00
parent 560e13c279
commit 8b831abce4

View File

@ -6,6 +6,8 @@ Version 0.2.1.RELEASE is compatible with the Spring Cloud Finchley. Version 0.1.
These artifacts are available from Maven Central and Spring Release repository via BOM: These artifacts are available from Maven Central and Spring Release repository via BOM:
[source,xml]
----
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
@ -17,10 +19,12 @@ These artifacts are available from Maven Central and Spring Release repository v
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
add the module in dependencies. ----
If you want to use the latest BUILD-SNAPSHOT version, add Spring Snapshot Repository in pom.xml , Attention: BUILD-SNAPSHOT may be updated in any time If you want to use the latest BUILD-SNAPSHOT version, add Spring Snapshot Repository in pom.xml , Attention: BUILD-SNAPSHOT may be updated in any time
[source,xml]
----
<repositories> <repositories>
<repository> <repository>
<id>spring-snapshot</id> <id>spring-snapshot</id>
@ -31,3 +35,4 @@ If you want to use the latest BUILD-SNAPSHOT version, add Spring Snapshot Reposi
</snapshots> </snapshots>
</repository> </repository>
</repositories> </repositories>
----