Beginners Add jar packs or Maven project Pom file dependencies always do not know where to get, waste a lot of time, below tell you a resource library:
Resource pool: http://search.maven.org
http://mvnrepository.com/
Search for the resources you need as you need to:
We select the different file types that are required on the right
Here's how the jar pack and pom dependencies are introduced
About the introduction of jar packs:
Select Item----->build Path----->configure Build Path Click Add External JARs ... Select the jar package we need to rely on for our project to finally apply OK.
About adding Pom file dependencies "Note that you want to include a dependency package in a pair of dependency tags":
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId> junit</artifactid>
<version>3.8.1</version>
<scope>test</scope>
< /dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
< artifactid>activemq-all</artifactid>
<version>5.15.0</version>
</dependency >
</dependencies>