zoukankan      html  css  js  c++  java
  • maven 本地配置

     1.安装 配置环境变量

    文件路径:C:Program Filesapache-maven-3.3.9

    2.本地文件配置

    setting的配置  

    找到文件C:Program Filesapache-maven-3.3.9conf,

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 
     3 
     4 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
     5           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     6           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
     7   <!-- localRepository
     8    | The path to the local repository maven will use to store artifacts.
     9    |
    10    | Default: ${user.home}/.m2/repository
    11   <localRepository>/path/to/local/repo</localRepository>
    12   -->
    13   <localRepository>E:maven
    epository</localRepository> //设置本地仓库
    14   <mirrors>
    15        <mirror>
    16             <id>nexus-aliyun</id>
    17             <mirrorOf>*</mirrorOf>
    18             <name>Nexus aliyun</name>
    19             <url>http://maven.aliyun.com/nexus/content/groups/public</url>//设置阿里云为下载地址,Apache的太慢了
    20       </mirror> 
    21   </mirrors>
    22   <profiles>
    23      <profile>       
    24            <id>jdk-1.8</id>  //jdk版本     
    25            <activation>       
    26                <activeByDefault>true</activeByDefault>       
    27                <jdk>1.8</jdk>       
    28            </activation>       
    29            <properties>       
    30                <maven.compiler.source>1.8</maven.compiler.source>       
    31                <maven.compiler.target>1.8</maven.compiler.target>       
    32                <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>       
    33            </properties>       
    34      </profile> 
    35   </profiles>
    36 </settings>
  • 相关阅读:
    新的开始!
    find命令之mtime
    glances服务器监控工具
    centos7最小化安装改为图形界面
    ansible笔记(3)-文件操作模块(上)
    php-fpm参数详解
    ansible笔记(2)-模块简介
    centos创建交换分区
    等保测评三级整改-身份鉴别
    vsftp安装配置
  • 原文地址:https://www.cnblogs.com/bignew/p/6638806.html
Copyright © 2011-2022 走看看