355阿里云云效 Maven 是什么
2021-09-02 10:48:26 0 举报
AI智能生成
阿里云云效 Maven 接入详情
作者其他创作
大纲/内容
配置指南
gradle 配置指南
1、在 build.gradle 文件中加入以下代码
allprojects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
mavenLocal()
mavenCentral()
}
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
mavenLocal()
mavenCentral()
}
}
2、如果想使用其它代理仓,以使用spring仓为例,代码如下
allProjects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/spring/'
}
mavenLocal()
mavenCentral()
}
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/spring/'
}
mavenLocal()
mavenCentral()
}
}
3、加入你要引用的文件信息
dependencies {
compile '[GROUP_ID]:[ARTIFACT_ID]:[VERSION]'
}
compile '[GROUP_ID]:[ARTIFACT_ID]:[VERSION]'
}
4、执行命令
gradle dependencies 或 ./gradlew dependencies 安装依赖
maven 配置指南
1、打开 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>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
2、如果想使用其它代理仓库,可在<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>
<id>spring</id>
<url>https://maven.aliyun.com/repository/spring</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
3、在你的 pom.xml 文件<denpendencies></denpendencies>节点中加入你要引用的文件信息
<dependency>
<groupId>[GROUP_ID]</groupId>
<artifactId>[ARTIFACT_ID]</artifactId>
<version>[VERSION]</version>
</dependency>
<groupId>[GROUP_ID]</groupId>
<artifactId>[ARTIFACT_ID]</artifactId>
<version>[VERSION]</version>
</dependency>
4、执行拉取命令
mvn install
阿里云云效 Maven管网地址:
https://developer.aliyun.com/mvn/guide
阿里云效Maven
阿里云Maven中央仓库为 阿里云云效 提供的公共代理仓库,帮助研发人员提高研发生产效率,使用阿里云Maven中央仓库作为下载源,速度更快更稳定。
阿里云云效 是企业级一站式 DevOps 平台,覆盖产品从需求到运营的研发全生命周期,其中云效也提供了免费、可靠的Maven私有仓库 Packages,欢迎您体验使用。
仓库介绍
central
阿里云仓库地址
https://maven.aliyun.com/repository/central
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/central
源地址
https://repo1.maven.org/maven2/
jcenter
阿里云仓库地址
https://maven.aliyun.com/repository/public
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/jcenter
源地址
http://jcenter.bintray.com/
public
阿里云仓库地址
https://maven.aliyun.com/repository/public
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/groups/public
源地址
central仓和jcenter仓的聚合仓
google
阿里云仓库地址
https://maven.aliyun.com/repository/google
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/google
源地址
https://maven.google.com/
gradle-plugin
阿里云仓库地址
https://maven.aliyun.com/repository/gradle-plugin
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/gradle-plugin
源地址
https://plugins.gradle.org/m2/
spring
阿里云仓库地址
https://maven.aliyun.com/repository/spring
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/spring
源地址
http://repo.spring.io/libs-milestone/
spring-plugin
阿里云仓库地址
https://maven.aliyun.com/repository/spring-plugin
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/spring-plugin
源地址
http://repo.spring.io/plugins-release/
grails-core
阿里云仓库地址
https://maven.aliyun.com/repository/grails-core
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/grails-core
源地址
https://repo.grails.org/grails/core
apache snapshots
阿里云仓库地址
https://maven.aliyun.com/repository/apache-snapshots
阿里云仓库地址(老版)
https://maven.aliyun.com/nexus/content/repositories/apache-snapshots
源地址
https://repository.apache.org/snapshots/
0 条评论
下一页