maven GAV查询

在maven的pom.xml配置依赖时,需要提供GAV信息。如junit的依赖如下:

<dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>

GAV查询也叫坐标查询,常用的地址:

http://mvnrepository.com/

 

 

你可能感兴趣的:(maven)