首页 > 其他分享 >Maven 中央仓库配置

Maven 中央仓库配置

时间:2022-10-31 12:15:36浏览次数:53  
标签:maven http Repository 仓库 repos 配置 Maven content

 

Maven 中央仓库配置

Maven 中央仓库地址大全

<!-- 1、阿里中央仓库(首推1) -->
<repository>  
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository> 
<!-- 2、camunda.com 中央仓库(首推2)-->
<repository>  
    <id>activiti-repos2</id>  
    <name>Activiti Repository 2</name>  
    <url>https://app.camunda.com/nexus/content/groups/public</url>  
</repository>  
<!-- 3、spring.io 中央仓库 -->
<repository>  
    <id>springsource-repos</id>  
    <name>SpringSource Repository</name>  
    <url>http://repo.spring.io/release/</url>  
</repository>
<!-- 4、maven.apache.org 中央仓库 ->
<repository>  
    <id>central-repos</id>  
    <name>Central Repository</name>  
    <url>http://repo.maven.apache.org/maven2</url>  
</repository>
<!-- 5、maven.org 中央仓库 -->
<repository>  
    <id>central-repos1</id>  
    <name>Central Repository 2</name>  
    <url>http://repo1.maven.org/maven2/</url>  
</repository>
<!-- 6、alfresco.com 中央仓库(首推3)-->
<repository>  
    <id>activiti-repos</id>  
    <name>Activiti Repository</name>  
    <url>https://maven.alfresco.com/nexus/content/groups/public</url>  
</repository>
<!-- 7、oschina 中央仓库(需要x墙哟)-->
<repository>
    <id>oschina-repos</id>  
    <name>Oschina Releases</name>  
    <url>http://maven.oschina.net/content/groups/public</url>  
</repository>  
<!-- 8、oschina thinkgem 中央仓库(需要x墙哟)-->
<repository>   
    <id>thinkgem-repos</id>   
    <name>ThinkGem Repository</name>  
    <url>http://git.oschina.net/thinkgem/repos/raw/master</url>  
</repository>
<!-- 9、java.net 中央仓库(需要x墙哟)-->
<repository>
    <id>java-repos</id>
    <name>Java Repository</name>
    <url>http://download.java.net/maven/2/</url>
</repository>
<!-- 10、github.com 中央仓库(需要x墙哟)-->
<repository>
    <id>thinkgem-repos2</id>
    <name>ThinkGem Repository 2</name>
    <url>https://raw.github.com/thinkgem/repository/master</url>
</repository>

 

标签:maven,http,Repository,仓库,repos,配置,Maven,content
From: https://www.cnblogs.com/reverseapplepie/p/16843825.html

相关文章

  • kindeditor配置及功能实现详解
    ​ 1.编辑器修改(可选)1.1在 ueditor/config.json 中添加代码块    /* 上传word配置 */    "wordActionName":"wordupload",/* 执行上传视频的action......
  • 整合SSM-及配置环境
    整合SSM基本环境搭建新建一个Maven项目!SSMbuild,添加web的支持导入相关的pom依赖<?xmlversion="1.0"encoding="UTF-8"?><projectxmlns="http://maven.apache.org/POM/4......
  • Java IDE Maven Git配置
    mavenconf<localRepository>D:/localRepository</localRepository>  永久配置jdk1.8 ......
  • springcloud Alibaba-nacos[作为配置中心]
    1、在pom文件中引入nacos-config-starter依赖    <!--nacos配置中心的依赖--><dependency><groupId>com.alibaba.cloud</groupId>......
  • mysql主从配置及切换
    mysql主从分离是怎么配置的1、在主从服务器上都装上MySQL数据库,windows系统鄙人安装的是mysql_5.5.25.msi版本,Ubuntu安装的是mysql-5.6.22-linux-glibc2.5-i686.tarwindows......
  • vue开发环境,可以配置,域名访问模式嘛,这样线上项目就可以不用打包来访问了
    看了很多博文,本地也配置了,域名需要结合端口号来访问(多个项目也不可能都是80的,所以还是需要端口号的)不需要nginx配置/etc/host域名指向127.0.0.1https://www.cnblogs......
  • 技术编辑处置win10系统jdk环境变量配置的图文步骤
    许多win10系统用户在工作中经常会遇到对win10系统jdk环境变量配置进行操作的情况,比如近日有用户到本站反映说win10系统jdk环境变量配置的情况,但是却不知道要怎么操作win......
  • ASP.NET Core教程-Configuration(配置)- 配置文件
    更新记录转载请注明出处:2022年10月31日发布。2022年10月28日从笔记迁移到博客。ASP.NETCore应用配置说明当我们需要将程序发布到不同环境中时,需要让应用支持配......
  • git推送本地项目到运城仓库
    输入初始化仓库:gitinit继续输入(相当于将本地文件和远程仓库建立连接):gitremoteaddorigin远程仓库地址继续输入(将Gitee上的仓库pull到本地文件夹中):gitpullorig......
  • CentOS7 配置FTP服务器
    [root@TS004~]#yuminstallvsftpd     //安装VSftp应用[root@TS004~]#systemctlenablevsftpd   //设置开机启动[root@TS004~]#servicevsftpdsta......