# pro-spring-5 **Repository Path**: kimitop/pro-spring-5 ## Basic Information - **Project Name**: pro-spring-5 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-17 - **Last Updated**: 2021-03-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README == Apress Source Code This repository accompanies [*Pro Spring 5th Edition*](http://www.apress.com/9781484228074) by Iuliana Cosmina, Rob Harrop, Chris Schaefer, Clarence Ho (Apress, 2017). image::9781484228074.jpg[Cover image] Download the files as a zip using the green button, or clone the repository to your machine using Git. == Requirements 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*. == Releases Release v1.0 corresponds to the code in the published book, without corrections or updates. == Corrections For corrections to the content in the published book, see the file errata.md. == Contributions See the file Contributing.adoc for more information on how you can contribute to this repository. == Building and Deploying 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 ----