maven安装配置
Posted uuhh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven安装配置相关的知识,希望对你有一定的参考价值。
1.先下载apache-maven然后配置win环境变量,
2.在C:UsersAdministrator.m2settings.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>E:/maven/repository</localRepository> <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <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> </mirrors> </settings>
3.在exlipse中配置maven本地仓库和settings引用
以上是关于maven安装配置的主要内容,如果未能解决你的问题,请参考以下文章