Update a macro so that it properly uses spring.io

This commit is contained in:
Greg Turnquist 2013-09-30 09:26:48 -05:00
parent 976a19fcc8
commit a7effd7fb9
1 changed files with 2 additions and 2 deletions

View File

@ -441,7 +441,7 @@ Update your Gradle `build.gradle` file's `buildscript` section, so that it looks
```groovy
buildscript {
repositories {
maven { url "http://repo.springsource.org/libs-snapshot" }
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
@ -478,7 +478,7 @@ If you are using Maven, you can run the JAR by typing:
$ java -jar target/gs-batch-processing-0.1.0.jar
```
[spring-boot-gradle-plugin]: https://github.com/SpringSource/spring-boot/tree/master/spring-boot-tools/spring-boot-gradle-plugin
[spring-boot-gradle-plugin]: https://github.com/spring-projects/spring-boot/tree/master/spring-boot-tools/spring-boot-gradle-plugin
> **Note:** The procedure above will create a runnable JAR. You can also opt to [build a classic WAR file](/guides/gs/convert-jar-to-war/) instead.