From d97f6cf5b8d1e3e18ace9d4b5a3e112c1f986b7b Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Wed, 22 May 2013 09:48:14 +0200 Subject: [PATCH] Clarify instructions for building from source Re-order subsections to make it clear that running a full `./gradlew build` is not necessary just to import projects into your IDE or to build and install jars to your .m2 cache. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 96793d34c9..037b3fbda3 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,14 @@ a cross-platform, self-contained bootstrap mechanism for the build. ### check out sources `git clone git://github.com/SpringSource/spring-framework.git` -### compile and test, build all jars, distribution zips and docs -`./gradlew build` +### import sources into your IDE +Run `./import-into-eclipse.sh` or read `import-into-idea.md` as appropriate. ### install all spring-\* jars into your local Maven cache `./gradlew install` -### import sources into your IDE -Run `./import-into-eclipse.sh` or read `import-into-idea.md` as appropriate. +### compile and test, build all jars, distribution zips and docs +`./gradlew build` ... and discover more commands with `./gradlew tasks`. See also the [Gradle build and release FAQ][].