maven 安装及配置

2020-11-08  本文已影响0人  风禾尽绮

1、下载:http://maven.apache.org/download.cgi

2、配置环境变量
vi ~/.bash_profile

# maven
export MAVEN_HOME=/Users/lyua/Tool/apache-maven-3.6.3
export PATH=${PATH}:$MAVEN_HOME/bin

保存文件,执行如下命令使配置生效

source ~/.bash_profile

验证

maven -v

3、修改 maven/conf/settings.xml 中本地仓库地址和远程仓库地址
添加配置如下:

<localRepository>/Users/lyua/Tool/repository</localRepository>

在 mirrors 中添加配置如下:

<mirror>
  <id>alimaven</id>
  <mirrorOf>central</mirrorOf>
  <name>aliyun maven</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>

常用 jar 下载,在命令行执行 mvn help:system 即可,下载完成后查看本地仓库

4、IDEA 中 maven 配置,让 IDEA 使用自己下载的 maven
File -> New Projects Setting -> Preferences for new projects... -> 搜索 maven 并配置
或打开 IDEA -> Configure -> Preferences,搜索 maven 并配置


搜索 jre,将 jre 切换为本地安装好的 JDK 路径


检查远程仓库地址是否与 settings.xml 配置文件一致,如果不一致手动 Add,并删除其他远程仓库地址


5、创建 maven 项目
使用模板创建 maven 项目 勾选 create from archetype,不使用则不勾选
File -> New -> Project.. -> maven -> 勾选 create from archetype -> 选择 org.apache.maven.archetypes:maven-archetype-quickstart 输入项目名称等信息


点击 Finish

6、jar 包下载示例

进入 https://mvnrepository.com/ 搜索 httpclient,找到对应的版本后复制 dependency 信息到 pom.xml 的 dependencies 中

pom.xml

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.14.2</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.7</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpmime</artifactId>
        <version>4.5.7</version>
    </dependency>
</dependencies>

下载配置文件中的 jar 包
项目名称右键 -> Maven -> Reimport

上一篇下一篇

猜你喜欢

热点阅读