Removed the declaration of the Spring Boot Maven plugin in the root POM as it broke the build for package and install goals for projects that don't actually contain a main class but tests only.
Declared the plugin at the root POM for Spring Data REST related projects as these are the only ones providing a standalone runnable app.
Related pull request: #30.
Added example of how to secure a Spring Data REST project with Spring Security both on the method level as well as the URI level.
Original pull request: #22.
This app demonstrates how to mix Spring Data JPA and Spring Data MongoDB together (with Spring Data REST on top) to demonstrate how to split them up properly.