Maven Tutorial for Beginners : with Eclipse ► SUBSRIBE & LIKE!!
► LEARN "Big Picture" of FULL-STACK, CLOUD, AWS, MICROSERVICES with DOCKER and KUBERNETES in ***30 MINUTES*** - https://links.in28minutes.com/in28min-JAP-YT
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explore our Learning Paths - Skills, Video and Course Recommendations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Learn Full Stack, AWS, Cloud, and Microservices - https://www.youtube.com/playlist?list=PLBBog2r6uMCTM_CKntPT-GIMR2-4d55Un
► Learning Path 01 - Spring and Spring Boot Web Applications and API Developer - https://github.com/in28minutes/learn/blob/master/learning-paths/01.md
► Learning Path 02 - Full Stack Java Developer with Spring Boot, React and Angular - https://github.com/in28minutes/learn/blob/master/learning-paths/02.md
► Learning Path 03 - Java Cloud Microservices Developer with Spring Boot, Docker and Kubernetes - https://github.com/in28minutes/learn/blob/master/learning-paths/03.md
► Learning Path 04 - Java Cloud Web Developer with Spring Boot, AWS, Azure and PCF - https://github.com/in28minutes/learn/blob/master/learning-paths/04.md
► Learning Path 05 - Java AWS Expert with Microservices, Docker and Kubernetes - https://github.com/in28minutes/learn/blob/master/learning-paths/05.md
~~~~~~~~~~~~~~~~~~~~~~~~~~
Watch our "Most Watched Videos"
~~~~~~~~~~~~~~~~~~~~~~~~~~
► Here is our amazing playlist with our most-watched videos - https://www.youtube.com/playlist?list=PLBBog2r6uMCQhZaQ9vUT5zJWXzz-f49k1
~~~~~~~~~~~~~~~~~~~~~~~~~~
Learn from our Amazing Catalog
~~~~~~~~~~~~~~~~~~~~~~~~~~
in28Minutes is creating amazing learning solutions for Java, Spring Boot, APIs, Microservices, Cloud (AWS, Azure, GCP, and PCF), Docker, Kubernetes, and DevOps!
► Check out our complete Learn in28Minutes Course Catalog - https://github.com/in28minutes/learn#best-selling-courses
~~~~~~~~~~~~~~~~~~~~~~~~~~
Watch our Most Popular Playlists
~~~~~~~~~~~~~~~~~~~~~~~~~~
► Check out all our playlists on Java, Spring Boot, APIs, Microservices, Cloud (AWS, Azure, GCP, and PCF), Docker, Kubernetes, and DevOps here - https://www.youtube.com/user/rithustutorials/playlists?view=1&sort=lad&flow=list
Maven in28Minutes
0. What is Maven?
Every Day Developer
Build a jar or a war or an ear
Run the application locally - Tomcat or Jetty
Deploy to a T environment
Add new dependencies to a project
Run Unit Tests
Maven helps us do all these and more...
Generate Projects
Create Eclipse Workspace
1. Beginner Maven Project
What is the power of Maven?
Project Object Model (POM)
Name
Version
Packaging
Dependencies
Plugins
Build LifeCycle
Validate
Compile
Test
Package
Integration Test
Verify
Install
Deploy
2. Intermediate Maven Project
Dependency Management
Scope
Transitive Dependencies
Excluding Dependency
Dependency Versions
Sample Project Object Model
Maven Plugins
Convention over configuration
Source Code
${basedir}/src/main/java
${basedir}/src/main/resources
Test Code
${basedir}/src/test
Hierarchy of POMS
Super POM
3. Multi Module Maven Project
Dependency Management in Parent POM
Installation Guide
4. Maven Web Application
Packaging
War
Ear
Running application in Tomcat
5. Tip and Tricks
Important Commands
help:effective-settings
help:effective-pom
dependency:tree
dependency:sources
--debug
Maven Archetypes
archetype:generate Udemy