- Maven Reference Manual : https://maven.apache.org/guides/
- Maven eBooks : https://www.sonatype.com/resources/whitepapers-reports-and-books
- Maven Cheat Sheet : http://www.luv2code.com/mavenecheatsheet https://www.jrebel.com/blog/maven-cheat-sheet
luv2code: https://www.youtube.com/watch?v=Fe6lrsPmseo&list=PLEAQNNR8IlB7uvr8EJbCNJq2I82A8cqE7 in28mins: https://www.youtube.com/watch?v=0CFWeVgzsqY simplilearn: https://www.youtube.com/watch?v=p0LPfK_oNCM&t=571s
- Maven overview part 1
- Key Concept part 1
- Key Concept part 2 Demo Find Dependencies
- Key Concepts Part 3
- Creating a Simple Project - Part 1
- Creating a Simple Project - Part 2
- Creating a Web Project
- Maven Repositories Overview
- Local Repository
- Maven Central Repository
https://repo.maven.apache.org/maven2/
- Additional Repositories Overview
- Additional Repositories Demo
<dependencies>
<!-- https://mvnrepository.com/artifact/com.atlassian.mail/atlassian-mail -->
<dependency>
<groupId>com.atlassian.mail</groupId>
<artifactId>atlassian-mail</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>atlassian</id>
<name>this artifact is located at AtlassianPkgs repository</name>
<url>https://packages.atlassian.com/maven-public</url>
</repository>
</repositories>
- Private Repositories