From 9b5768a49641360e509e2407036e66461d089da0 Mon Sep 17 00:00:00 2001 From: Gaurav Agarwal Date: Mon, 5 Aug 2019 11:22:16 +0530 Subject: [PATCH] Adding maven responsibilities. --- code-samples/06-maven/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/code-samples/06-maven/README.md b/code-samples/06-maven/README.md index e2669c7..4a4dccd 100644 --- a/code-samples/06-maven/README.md +++ b/code-samples/06-maven/README.md @@ -11,6 +11,34 @@ Creating an empty maven project for source & target 1.7: -DarchetypeVersion=1.4 ``` +## Responsibilities + +* Project Structuring + +``` + src + | + |--- main + | + |--- java + | + |___ resources + | + |___ test + | + |--- java + | + |___ resources + pom.xml +``` + +* Dependency management and resolution + +* Building, compiling & packaging + +* Additional configuration based on plugins + + ## Default Lifecycle * validate - validate the project is correct and all necessary information is available.