maven central repository怎么拉取下载
时间: 2024-12-08 22:19:04 浏览: 44
Maven Central Repository,也称为中央仓库,是 Maven 构建工具默认查找依赖的公共存储库。如果你想从 Maven Central 下载某个项目的依赖,首先你需要配置你的 `pom.xml` 文件来指定这个仓库作为依赖的来源。
1. 在 `pom.xml` 的 `<repositories>` 标签内添加 Maven Central Repository 地址:
```xml
<repositories>
<repository>
<id>central</id>
<name>Maven Central Repository</name>
<url>https://repo1.maven.org/maven2/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
```
2. 在 `<dependencies>` 部分添加依赖项,并使用 `<dependency>` 标签:
```xml
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>example-project</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
```
这里 `groupId`, `artifactId` 和 `version` 是项目标识符,可以在 Maven Central 的搜索页面输入查找。
3. 使用 Maven 的 `mvn install` 或者 `mvn dependency:resolve` 命令来下载并安装依赖到本地仓库。如果你的机器上还没有全局的 Maven 设置,需要先设置 `MAVEN_HOME` 环境变量指向你的 Maven 安装目录。
阅读全文