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:
@@ -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
|
||||
|
||||
@@ -17,6 +17,7 @@ apply plugin: 'eclipse'
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url 'https://repo.spring.io/snapshot' }
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
@@ -17,6 +17,7 @@ apply plugin: 'eclipse'
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url 'https://repo.spring.io/snapshot' }
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user