Commit fd9e258d authored by Phillip Webb's avatar Phillip Webb

Replace 'springsource.org' with 'spring.io'

Replace all references to 'springsource.org' with the new 'spring.io'
domain.
parent abb14204
...@@ -40,10 +40,10 @@ before you begin: ...@@ -40,10 +40,10 @@ before you begin:
### Manual installation ### Manual installation
You can download the Spring CLI distribution from the Spring software repository: You can download the Spring CLI distribution from the Spring software repository:
* [spring-boot-cli-0.5.0.M4-bin.zip](http://repo.springsource.org/milestone/org/springframework/boot/spring-boot-cli/0.5.0.M4/spring-boot-cli-0.5.0.M4-bin.zip) * [spring-boot-cli-0.5.0.M4-bin.zip](http://repo.spring.io/milestone/org/springframework/boot/spring-boot-cli/0.5.0.M4/spring-boot-cli-0.5.0.M4-bin.zip)
* [spring-boot-cli-0.5.0.M4-bin.tar.gz](http://repo.springsource.org/milestone/org/springframework/boot/spring-boot-cli/0.5.0.M4/spring-boot-cli-0.5.0.M4-bin.tar.gz) * [spring-boot-cli-0.5.0.M4-bin.tar.gz](http://repo.spring.io/milestone/org/springframework/boot/spring-boot-cli/0.5.0.M4/spring-boot-cli-0.5.0.M4-bin.tar.gz)
Cutting edge [snapshot distributions](http://repo.springsource.org/snapshot/org/springframework/boot/spring-boot-cli/) Cutting edge [snapshot distributions](http://repo.spring.io/snapshot/org/springframework/boot/spring-boot-cli/)
are also available. are also available.
Once downloaded, follow the Once downloaded, follow the
...@@ -69,7 +69,7 @@ If you are on a Mac and using [homebrew](http://brew.sh/), all you need to do to ...@@ -69,7 +69,7 @@ If you are on a Mac and using [homebrew](http://brew.sh/), all you need to do to
the Spring Boot CLI is: the Spring Boot CLI is:
``` ```
$ brew install http://repo.springsource.org/install/spring-boot-cli.rb $ brew install http://repo.spring.io/install/spring-boot-cli.rb
``` ```
Homebrew will install `spring` to `/usr/local/bin`. Now you can jump right to a Homebrew will install `spring` to `/usr/local/bin`. Now you can jump right to a
...@@ -157,23 +157,23 @@ Create a `pom.xml` to import the appropriate Spring Boot starters: ...@@ -157,23 +157,23 @@ Create a `pom.xml` to import the appropriate Spring Boot starters:
<repositories> <repositories>
<repository> <repository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<url>http://repo.springsource.org/snapshot</url> <url>http://repo.spring.io/snapshot</url>
<snapshots><enabled>true</enabled></snapshots> <snapshots><enabled>true</enabled></snapshots>
</repository> </repository>
<repository> <repository>
<id>spring-milestones</id> <id>spring-milestones</id>
<url>http://repo.springsource.org/milestone</url> <url>http://repo.spring.io/milestone</url>
<snapshots><enabled>true</enabled></snapshots> <snapshots><enabled>true</enabled></snapshots>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<url>http://repo.springsource.org/snapshot</url> <url>http://repo.spring.io/snapshot</url>
</pluginRepository> </pluginRepository>
<pluginRepository> <pluginRepository>
<id>spring-milestones</id> <id>spring-milestones</id>
<url>http://repo.springsource.org/milestone</url> <url>http://repo.spring.io/milestone</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
</project> </project>
...@@ -226,7 +226,7 @@ should see the following output: ...@@ -226,7 +226,7 @@ should see the following output:
## Building Spring Boot from source ## Building Spring Boot from source
You don't need to build from source to use Spring Boot (it's in You don't need to build from source to use Spring Boot (it's in
[repo.springsource.org](http://repo.springsource.org)), but if you want to try out the [repo.spring.io](http://repo.spring.io)), but if you want to try out the
latest and greatest, Spring Boot can be latest and greatest, Spring Boot can be
[built with maven](http://maven.apache.org/run-maven/index.html) v3.0.5 or above. [built with maven](http://maven.apache.org/run-maven/index.html) v3.0.5 or above.
......
...@@ -56,7 +56,7 @@ import org.springframework.boot.cli.Log; ...@@ -56,7 +56,7 @@ import org.springframework.boot.cli.Log;
* Spring repos to the search path, provide simple log progress feedback if downloads are * Spring repos to the search path, provide simple log progress feedback if downloads are
* taking a long time, and also fixes a problem where ivy cannot use a local Maven cache * taking a long time, and also fixes a problem where ivy cannot use a local Maven cache
* repo. * repo.
* *
* @author Phillip Webb * @author Phillip Webb
* @author Dave Syer * @author Dave Syer
*/ */
...@@ -111,9 +111,9 @@ class GrapeEngineCustomizer { ...@@ -111,9 +111,9 @@ class GrapeEngineCustomizer {
// Add support for spring snapshots and milestones if required // Add support for spring snapshots and milestones if required
if (!Boolean.getBoolean("disableSpringSnapshotRepos")) { if (!Boolean.getBoolean("disableSpringSnapshotRepos")) {
springBootResolver.addSpringSnapshotResolver(newResolver("spring-snapshot", springBootResolver.addSpringSnapshotResolver(newResolver("spring-snapshot",
"http://repo.springsource.org/snapshot")); "http://repo.spring.io/snapshot"));
springBootResolver.addSpringSnapshotResolver(newResolver("spring-milestone", springBootResolver.addSpringSnapshotResolver(newResolver("spring-milestone",
"http://repo.springsource.org/milestone")); "http://repo.spring.io/milestone"));
} }
// Replace the original resolvers // Replace the original resolvers
......
This diff is collapsed.
...@@ -16,20 +16,13 @@ ...@@ -16,20 +16,13 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.version>3.0.5</maven.version> <maven.version>3.0.5</maven.version>
</properties> </properties>
<developers>
<developer>
<id>spring</id>
<name>SpringSource</name>
<url>http://www.springsource.org</url>
</developer>
</developers>
<prerequisites> <prerequisites>
<maven>3.0.0</maven> <maven>3.0.0</maven>
</prerequisites> </prerequisites>
<scm> <scm>
<url>http://github.com/SpringSource/spring-boot</url> <url>http://github.com/spring-projects/spring-boot</url>
<connection>scm:git:git://github.com/SpringSource/spring-boot.git</connection> <connection>scm:git:git://github.com/spring-projects/spring-boot.git</connection>
<developerConnection>scm:git:ssh://git@github.com/SpringSource/spring-boot.git</developerConnection> <developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-boot.git</developerConnection>
</scm> </scm>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
...@@ -174,7 +167,7 @@ ...@@ -174,7 +167,7 @@
<repositories> <repositories>
<repository> <repository>
<id>spring-ext</id> <id>spring-ext</id>
<url>http://repo.springsource.org/ext-release-local/</url> <url>http://repo.spring.io/ext-release-local/</url>
<releases> <releases>
<enabled>true</enabled> <enabled>true</enabled>
</releases> </releases>
...@@ -287,7 +280,7 @@ ...@@ -287,7 +280,7 @@
<repository> <repository>
<id>spring-milestones</id> <id>spring-milestones</id>
<name>Spring Milestones</name> <name>Spring Milestones</name>
<url>http://maven.springframework.org/milestone</url> <url>http://repo.spring.io/milestone</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>
...@@ -295,7 +288,7 @@ ...@@ -295,7 +288,7 @@
<repository> <repository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<name>Spring Snapshots</name> <name>Spring Snapshots</name>
<url>http://maven.springframework.org/snapshot</url> <url>http://repo.spring.io/snapshot</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
...@@ -305,7 +298,7 @@ ...@@ -305,7 +298,7 @@
<pluginRepository> <pluginRepository>
<id>spring-milestones</id> <id>spring-milestones</id>
<name>Spring Milestones</name> <name>Spring Milestones</name>
<url>http://maven.springframework.org/milestone</url> <url>http://repo.spring.io/milestone</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
</snapshots> </snapshots>
...@@ -313,7 +306,7 @@ ...@@ -313,7 +306,7 @@
<pluginRepository> <pluginRepository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<name>Spring Snapshots</name> <name>Spring Snapshots</name>
<url>http://maven.springframework.org/snapshot</url> <url>http://repo.spring.io/snapshot</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
......
...@@ -20,8 +20,8 @@ If you are using a milestone or snapshot release you will also need to add appro ...@@ -20,8 +20,8 @@ If you are using a milestone or snapshot release you will also need to add appro
```groovy ```groovy
buildscript { buildscript {
repositories { repositories {
maven.url "http://repo.springsource.org/snapshot" maven.url "http://repo.spring.io/snapshot"
maven.url "http://repo.springsource.org/milestone" maven.url "http://repo.spring.io/milestone"
} }
// ... // ...
} }
......
...@@ -38,11 +38,11 @@ If you are using a milestone or snapshot release you will also need to add appro ...@@ -38,11 +38,11 @@ If you are using a milestone or snapshot release you will also need to add appro
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>spring-snapshots</id> <id>spring-snapshots</id>
<url>http://repo.springsource.org/snapshot</url> <url>http://repo.spring.io/snapshot</url>
</pluginRepository> </pluginRepository>
<pluginRepository> <pluginRepository>
<id>spring-milestones</id> <id>spring-milestones</id>
<url>http://repo.springsource.org/milestone</url> <url>http://repo.spring.io/milestone</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment