当前位置: 首页 > article >正文

maven环境搭建

maven历史版本下载:https://archive.apache.org/dist/maven/

  • 新建系统变量
  • 编辑Path,添加bin目录
  • mvn -v测试查看版本号
  • conf目录下新建repository文件夹,作为本地仓库

settings.xml

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  
  <!--设置本地仓库位置-->
   <localRepository>D:\apache-maven-3.6.1\conf\repository</localRepository>
  
  <pluginGroups>
    
  </pluginGroups>

  <proxies>
	<profile>    
	    <id>jdk1.8</id>    
	    <activation>    
	        <activeByDefault>true</activeByDefault>
	        <jdk>1.8</jdk>    
	    </activation>
	    <properties>    
	        <maven.compiler.source>1.8</maven.compiler.source>    
	        <maven.compiler.target>1.8</maven.compiler.target>
	        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> 
	    </properties>    
	</profile>
  </proxies>

  <servers>
    
  </servers>

  <mirrors>
    <!-- 阿里镜像 -->
	<mirror>
	    <id>alimaven</id>
	    <mirrorOf>central</mirrorOf>
	    <name>aliyun maven</name>
	    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
	</mirror>
	<mirror>
	    <id>alimaven</id>
	    <name>aliyun maven</name>
	    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
	    <mirrorOf>central</mirrorOf>
	</mirror>
	<!--maven镜像-->
	<mirror>
	    <id>central</id>
	    <name>Maven Repository Switchboard</name>
	    <url>http://repo1.maven.org/maven2/</url>
	    <mirrorOf>central</mirrorOf>
	</mirror>
	<mirror>
	    <id>repo2</id>
	    <mirrorOf>central</mirrorOf>
	    <name>Human Readable Name for this Mirror.</name>
	    <url>http://repo2.maven.org/maven2/</url>
	</mirror>
	<!-- 中央仓库在中国的镜像 -->
	<mirror>
	    <id>maven.net.cn</id>
	    <name>oneof the central mirrors in china</name>
	    <url>http://maven.net.cn/content/groups/public/</url>
	    <mirrorOf>central</mirrorOf>
	</mirror>
	<!--ibiblio镜像-->
	<mirror>
	    <id>ibiblio</id>
	    <mirrorOf>central</mirrorOf>
	    <name>Human Readable Name for this Mirror.</name>
	    <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
	</mirror>
	<!--Jboss镜像-->
	<mirror>
	    <id>jboss-public-repository-group</id>
	    <mirrorOf>central</mirrorOf>
	    <name>JBoss Public Repository Group</name>
	    <url>http://repository.jboss.org/nexus/content/groups/public</url>
	</mirror>
	<!--google镜像-->
	<mirror>
	    <id>google-maven-central</id>
	    <name>Google Maven Central</name>
	    <url>https://maven-central.storage.googleapis.com
	    </url>
	    <mirrorOf>central</mirrorOf>
	</mirror>

  </mirrors>
  <profiles>
    
  </profiles>
</settings>

http://www.kler.cn/a/159177.html

相关文章:

  • 低代码平台:跨数据库处理的重要性与实现方式
  • PCHMI串口接收实验
  • .Net Core根据文件名称自动注入服务
  • LSTM(长短期记忆网络)详解
  • 用OMS进行 OceanBase 租户间数据迁移的测评
  • 网盘聚合搜索项目Aipan(爱盼)
  • 如何使用llm 制作多模态
  • Spatial Data Analysis(三):点模式分析
  • vue表格合计 计算 保留两位小数
  • 大数据:sql,数据挖掘刷题
  • 0X04
  • CETN01 - How to Use Cloud Classroom
  • 网上选课系统源码(Java)
  • 算法--最短路
  • python实现模拟用户点击行为测试
  • 基本网络安全概述:保护您的数字生活
  • 海外服务器和国内服务器有什么样的区别呢
  • 用Python手把手教你WordCloud可视化
  • 二维码智慧门牌管理系统升级:智能化制牌申请管理
  • MQTT框架和使用
  • 面试题--函数指针的五大作用
  • 《Pandas1.x实例精解 》书籍分享
  • Linux多核飞控
  • 利用ElementUI配置商品的规格参数
  • ROS-ROS通信机制-服务通信
  • 前端面试提问(3)