赞
踩
阿里云Maven中央仓库为阿里云提供的公共代理仓库,帮助研发人员提高研发生产效率,使用阿里云Maven中央仓库作为下载源,速度更快更稳定。
目录
打开 maven 的配置文件( windows 机器一般在 maven 安装目录的 conf/settings.xml ),在<mirrors></mirrors>标签中添加 mirror 子节点:
- <mirror>
- <id>aliyunmaven</id>
- <mirrorOf>*</mirrorOf>
- <name>阿里云公共镜像源</name>
- <url>https://maven.aliyun.com/repository/public</url>
- </mirror>
如果想使用其它代理仓库,可在<repositories></repositories>节点中加入对应的仓库使用地址。以使用 spring 代理仓为例:
- <repository>
- <id>spring</id>
- <url>https://maven.aliyun.com/repository/spring</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
在你的 pom.xml 文件<denpendencies></denpendencies>节点中加入你要引用的文件信息:
- <dependency>
- <groupId>[GROUP_ID]</groupId>
- <artifactId>[ARTIFACT_ID]</artifactId>
- <version>[VERSION]</version>
- </dependency>
执行拉取命令:
mvn install
在 build.gradle 文件中加入以下代码:
- allprojects {
- repositories {
- maven {
- url 'https://maven.aliyun.com/repository/public/'
- }
- mavenLocal()
- mavenCentral()
- }
- }
如果想使用其它代理仓,以使用spring仓为例:
- allProjects {
- repositories {
- maven {
- url 'https://maven.aliyun.com/repository/public/'
- }
- maven {
- url 'https://maven.aliyun.com/repository/spring/'
- }
- mavenLocal()
- mavenCentral()
- }
- }
加入你要引用的文件信息:
- dependencies {
- compile '[GROUP_ID]:[ARTIFACT_ID]:[VERSION]'
- }
执行命令:
gradle dependencies 或 ./gradlew dependencies 安装依赖
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。