Maven checks the jar's pom import source

Click from the idea Maven Projects, then click Show Dependencies, as shown in the figure

insert image description here

Get the dependency graph, as follows

insert image description here

Ctrl + F The Jar name required for searching on the page

Example: Find spring-beans
insert image description here
insert image description here
and double-click the framed place to enter the corresponding pom file
insert image description here

find dependencies

insert image description here
1. Double-click spring-context in the above picture
insert image description here
2. Click spring-context, you can see that there is an aop 3. Click spring-aop in the above picture, you can see spring-beans
insert image description here
in the picture below 4. Click directly in the relationship diagram spring-beans will find that the pom file to jump to is the spring-aop-5.3.23.pom just opened
insert image description here


maven related sharing

Maven warehouse address: https://mvnrepository.com/
Ali warehouse address: https://developer.aliyun.com/mvn/search
Ali warehouse settings.xml configuration:

<mirrors>
	<mirror>
        <id>alimaven</id>
        <mirrorOf>central</mirrorOf>
        <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
    </mirror>
</mirrors>

Guess you like

Origin blog.csdn.net/qq_38254635/article/details/131527971