Skip to content

Commit e1ef0b1

Browse files
committed
Improved README
- Changed Building from Source section to use gradle.
1 parent 6dc7674 commit e1ef0b1

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,22 @@ For more information, please refer to the [documentation on the wiki](https://gi
1414
As of writing this, there are no binaries to download.
1515
We plan to release a first milestone soon.
1616

17-
## Building
17+
## Building from Source
1818

19-
Spring Scala is currently using Maven, but a Gradle build is being worked on.
20-
For the moment, you can build Spring Scala as follows:
19+
Spring Scala uses a [Gradle](http://gradle.org)-based build system.
20+
In the instructions below, [`./gradlew`](http://vimeo.com/34436402) is invoked from the root of the source tree and serves as a cross-platform, self-contained bootstrap mechanism for the build.
21+
The only prerequisites are [Git](http://help.github.com/set-up-git-redirect) and JDK 1.7+.
2122

22-
git clone [email protected]:SpringSource/spring-scala.git
23-
cd spring-scala
24-
mvn install
23+
### check out sources
24+
`git clone git://github.com/SpringSource/spring-scala.git`
25+
26+
### compile and test, build all jars, distribution zips and docs
27+
`./gradlew build`
28+
29+
### install all spring-\* jars into your local Maven cache
30+
`./gradlew install`
31+
32+
... and discover more commands with `./gradlew tasks`. See also the [Gradle build and release FAQ](https://github.com/SpringSource/spring-framework/wiki/Gradle-build-and-release-FAQ).
2533

2634
## Documentation
2735

0 commit comments

Comments
 (0)