forked from normanmaurer/netty-in-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make certain utils is installed before any single projects are built.
- Loading branch information
Showing
1 changed file
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,28 @@ | ||
This Repository contains the source-code for all chapters of the book [Netty in Action](http://manning.com/maurer) | ||
by Norman Maurer and Marvin Allen Wolfthal. | ||
|
||
Enjoy and feedback / PR's welcome! | ||
|
||
Enjoy! Feedback and PR's welcome! | ||
|
||
|
||
## Pre-requisites | ||
|
||
- JDK 1.7.0u71 or better | ||
- Maven 3.2.3 or better | ||
: | ||
JDK 1.7.0u71 or better | ||
|
||
Maven 3.2.3 or better | ||
|
||
|
||
|
||
If you want to build everything at once, from the top directory run | ||
|
||
mvn install | ||
|
||
|
||
If you want to build only single projects then from the top directory first run | ||
|
||
mvn install -pl utils | ||
|
||
|
||
This will make the utils jar available to all the projects. | ||
|