Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update README build instructions
  • Loading branch information
cbeams committed Feb 11, 2011
1 parent 50f3299 commit 00a6e90
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions README
Expand Up @@ -9,21 +9,32 @@ Or if you prefer using Subversion:

Once checked out, you can build from the command line using either Gradle or
Maven. If you're new to Gradle, don't worry -- there's nothing for you to
install. Simply type the following within the root directory of the project:
install. Simply use the 'gradlew' (or 'gradlew.bat' on windows) script within
the root directory of the project:

>$ ./gradlew build

If necessary, this 'Gradle wrapper' script will download a distribution of
Gradle for you. If you prefer Maven, of course you can simply type:
And the following will give you a list of all available tasks:

>$ mvn test
>$ ./gradlew tasks

If you're using an IDE that supports Maven-based projects, you can of course
import the project directly from its POM. In any case, if you're using Eclipse
you can generate Eclipse project metadata with
If necessary, this 'Gradle wrapper' script will download a distribution of
Gradle for you.

Generate project metadata appropriate to your IDE with

>$ ./gradlew eclipse
- or -
>$ ./gradlew idea

IDEA users can do the same with

>$ ./gradlew idea
If you prefer Maven, you can simply type:

>$ mvn test

If you're using an IDE that supports Maven-based projects, you can import the
project directly from its POM. Otherwise, generate IDE metadata with

>$ mvn eclipse:eclipse
- or -
>$ mvn idea:idea

0 comments on commit 00a6e90

Please sign in to comment.