Reflect snapshots being available from https://repo.spring.io/snapshot

Update the README and the samples’ build.gradle and pom.xml files to
reflect snapshots now being available from
https://repo.spring.io/snapshot.

Closes #5
This commit is contained in:
Andy Wilkinson
2015-01-08 18:06:38 +00:00
parent 6ec522069a
commit af93a32bde
5 changed files with 27 additions and 2 deletions

View File

@@ -10,13 +10,14 @@ For a broader introduction see the [Documenting RESTful APIs][9] presentation.
## Quickstart
The project requires Java 7 or later. It's built with Gradle:
The project requires Java 7 or later. Snapshots are published to
`https://repo.spring.io/snapshot`. Alternatively, it can be built locally using Gradle:
```
$ ./gradlew build install
```
Once the main project's built, take a look at one of the two sample projects. Both
The quickest way to get started is to look at one of the two sample projects. Both
projects implement a RESTful service for creating tagged notes and illustrate the use
of Maven or Gradle. The two projects have different implementations:
`rest-notes-spring-hateoas` is implemented using Spring MVC and Spring Hateoas where as

View File

@@ -17,6 +17,7 @@ apply plugin: 'eclipse'
repositories {
mavenLocal()
maven { url 'https://repo.spring.io/snapshot' }
mavenCentral()
}

View File

@@ -96,4 +96,15 @@
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>

View File

@@ -17,6 +17,7 @@ apply plugin: 'eclipse'
repositories {
mavenLocal()
maven { url 'https://repo.spring.io/snapshot' }
mavenCentral()
}

View File

@@ -112,4 +112,15 @@
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>