首页 > 其他分享 >Maven配置阿里云仓库

Maven配置阿里云仓库

时间:2022-08-19 22:35:42浏览次数:41  
标签:maven groups 仓库 Maven nexus 阿里 aliyun content public

打开 maven 的配置文件( windows 系统一般在 maven 安装目录的 conf/settings.xml )

在<profiles></profiles>标签中添加 profile子节点:
<profile>
	<id>aliProfile</id>
	<!-- 阿里云maven仓库 -->
	<repositories>
		<repository>
			<id>public</id>
			<name>aliyun nexus</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
			<releases>
				<enabled>true</enabled>
			</releases>
		</repository>
	</repositories>
	<pluginRepositories>
		<pluginRepository>
			<id>public</id>
			<name>aliyun nexus</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
	</pluginRepositories>
</profile>

<!--激活使用-->
   <activeProfiles>
    <activeProfile>aliProfile</activeProfile>
  </activeProfiles>

标签:maven,groups,仓库,Maven,nexus,阿里,aliyun,content,public
From: https://www.cnblogs.com/saltish/p/16586673.html

相关文章

  • 搭建npm私有仓库
    目的搭建一个npm内网的私有源,通过内网下载私有包,同时可以像公有包一样检查私有包的版本更新主要流程第一步安装npm私有仓库框架verdaccionpminstall--globalverd......
  • 解决Maven依赖下载不全的问题
    背景描述在日常学习过程中使用Maven构建SpringBoot+SpringCloud服务时,有时会使用非正式版的SpringBoot和SpringCloud(非正式版是指不是最终发布的版本,而是测试版或里程碑版......
  • Java操作MongoDB采用MongoRepository仓库进行条件查询
    1.实体类1publicclassPersonimplementsSerializable{2privatestaticfinallongserialVersionUID=-8288372263345673367L;3privateStringid;4......
  • 阿里云携手卫宁健康发布WinCloud智慧医疗云联合解决方案,打造新一代智慧医疗系统
    近日,2022阿里云飞天技术峰会在深圳举办。在《分布式云最佳实践分论坛》分论坛上,阿里巴巴集团副总裁、阿里云智能中国区总裁黄海清,卫宁健康总裁助理、广东分公司总经理韩周......
  • 项目一共30个模块,你叫我maven版本一个个手动改?
    大家好呀,我是铂赛东,一个乱入公众号博主的开源作者。今天分享一个maven小技巧,希望帮助到大家。之前有个群友私聊问我,如何快速统一去更改项目中所有的maven版本号,他说之前都......
  • 无网络使用本地maven仓库配置,构建上传sonarqube进行代码检查
    #前提需要本地仓库下存在项目的所有依赖包1.mavensettings.xml文件配置。如果idea和本地mvn环境使用的settings.xml路径不一致。则需要同步修改。<!--#前提需要本......
  • 使用阿里读取 excel文件遇到的问题
    Servlet.service()forservlet[dispatcherServlet]incontextwithpath[]threwexception[Requestprocessingfailed;nestedexceptioniscom.alibaba.excel.exc......
  • Jave配置Maven
    1.安装Maven  Maven官网:https://maven.apache.org/download.cgi  选择Binaryziparchive下载zip包    将解压的文件放入自己选定的文件路径中  2.配置环......
  • 2、spring+mybatis注解+idea+maven
    1、在idea中配置database连接数据库,用来在idea中编写sql脚本操作数据库         2、sql详细脚本如下:1--1.创建部门表2createtabledept3......
  • SVN如何更换仓库地址?
    我们在工作的工程中,SVN地址有时可能会做适当的变动,下面介绍下Windows和Linux下SVN如何切换仓库的地址:一、Windows下如何切换SVN仓库地址?首先右键项目文件夹TortoiseSVN......