This repository accompanies [Pro Spring 5th Edition](http://www.apress.com/9781484228074) by Iuliana Cosmina, Rob Harrop, Chris Schaefer, Clarence Ho (Apress, 2017).
Download the files as a zip using the green button, or clone the repository to your machine using Git.
To be able to execute 'gradle clean build -x test' successfully you need at least Java 8 installed.
The AspectJ plugin in module 'chapter05:aspectj-aspects' requires Gradle 4.0.
Release v1.0 corresponds to the code in the published book, without corrections or updates.
See the file Contributing.adoc for more information on how you can contribute to this repository.
This is a Gradle multi-module project. Currently it can be compiled with Gradle 5.x and JDK 8. Build it from scratch using:
gradle clean build
Build it without tests using:
gradle build -x test
Build it and copy dependencies into build/libs using:
gradle clean build copyDependencies