maven GAV查询

来源:互联网 发布:php程序员简历 编辑:程序博客网 时间:2024/05/21 14:02

在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/

 

 

0 0