Find Maven relies

How to find rely on Maven

 

Case 1: know the name of the class
 1.1 know the full path name of the class, such as org.apache.poi.xssf.usermodel.XSSFWorkbook

Open https://search.maven.org/

Enter fc: org.apache.poi.xssf.usermodel.XSSFWorkbook (Note: fc represents the full class)

Click for Latest Version version number should be, you can get coordinates, as shown below

Search :( where c is a class, only know when the class name is used) 

1.2 know the class name, such as XSSFWorkbook

Input c: XSSFWorkbook (Note: c Representative class)

Click for Latest Version should be the version number, you can get coordinates


Case 2: Group ID or Artifact ID know 

Search time :( where g represents the group id, know group id of use)

g: com.alibaba

 


Search :( which time a representative of artiface id, know artiface id use)

a:druid
 

 

Guess you like

Origin www.cnblogs.com/wooluwalker/p/12571992.html