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

Polish spring-cloud-incubator/spring-cloud-alibaba#348 : @DubboTransported supports RestTemplate (part 1)

This commit is contained in:
mercyblitz 2019-02-19 15:08:11 +08:00
parent fc8d8e3628
commit 5099ed782c
3 changed files with 11 additions and 11 deletions

View File

@ -87,7 +87,7 @@ Spring Cloud 使用 Maven 来构建,最快的使用方式是将本项目 clone
<repository> <repository>
<id>spring-snapshot</id> <id>spring-snapshot</id>
<name>Spring Snapshot Repository</name> <name>Spring Snapshot Repository</name>
<path>https://repo.spring.io/snapshot</path> <url>https://repo.spring.io/snapshot</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>

View File

@ -86,7 +86,7 @@ If you want to use the latest BUILD-SNAPSHOT version, add `Spring Snapshot Repos
<repository> <repository>
<id>spring-snapshot</id> <id>spring-snapshot</id>
<name>Spring Snapshot Repository</name> <name>Spring Snapshot Repository</name>
<path>https://repo.spring.io/snapshot</path> <url>https://repo.spring.io/snapshot</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>

18
pom.xml
View File

@ -22,13 +22,13 @@
<licenses> <licenses>
<license> <license>
<name>Apache License, Version 2.0</name> <name>Apache License, Version 2.0</name>
<path>http://www.apache.org/licenses/LICENSE-2.0.txt</path> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution> <distribution>repo</distribution>
</license> </license>
</licenses> </licenses>
<scm> <scm>
<path>https://github.com/spring-cloud-incubator/spring-cloud-alibaba</path> <url>https://github.com/spring-cloud-incubator/spring-cloud-alibaba</url>
<connection> <connection>
scm:git:git://github.com/spring-cloud-incubator/spring-cloud-alibaba.git scm:git:git://github.com/spring-cloud-incubator/spring-cloud-alibaba.git
</connection> </connection>
@ -60,7 +60,7 @@
<name>Mercy Ma</name> <name>Mercy Ma</name>
<email>mercyblitz@gmail.com</email> <email>mercyblitz@gmail.com</email>
<organization>Alibaba</organization> <organization>Alibaba</organization>
<path>https://github.com/mercyblitz</path> <url>https://github.com/mercyblitz</url>
</developer> </developer>
</developers> </developers>
@ -246,7 +246,7 @@
<repository> <repository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<name>Spring Snapshots</name> <name>Spring Snapshots</name>
<path>https://repo.spring.io/libs-snapshot-local</path> <url>https://repo.spring.io/libs-snapshot-local</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
@ -257,7 +257,7 @@
<repository> <repository>
<id>spring-milestones</id> <id>spring-milestones</id>
<name>Spring Milestones</name> <name>Spring Milestones</name>
<path>https://repo.spring.io/libs-milestone-local</path> <url>https://repo.spring.io/libs-milestone-local</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>
@ -265,7 +265,7 @@
<repository> <repository>
<id>spring-releases</id> <id>spring-releases</id>
<name>Spring Releases</name> <name>Spring Releases</name>
<path>https://repo.spring.io/release</path> <url>https://repo.spring.io/release</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>
@ -275,7 +275,7 @@
<pluginRepository> <pluginRepository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<name>Spring Snapshots</name> <name>Spring Snapshots</name>
<path>https://repo.spring.io/libs-snapshot-local</path> <url>https://repo.spring.io/libs-snapshot-local</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
@ -286,7 +286,7 @@
<pluginRepository> <pluginRepository>
<id>spring-milestones</id> <id>spring-milestones</id>
<name>Spring Milestones</name> <name>Spring Milestones</name>
<path>https://repo.spring.io/libs-milestone-local</path> <url>https://repo.spring.io/libs-milestone-local</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>
@ -294,7 +294,7 @@
<pluginRepository> <pluginRepository>
<id>spring-releases</id> <id>spring-releases</id>
<name>Spring Releases</name> <name>Spring Releases</name>
<path>https://repo.spring.io/libs-release-local</path> <url>https://repo.spring.io/libs-release-local</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>