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>
  • 相关阅读:
    含字母数字的字符串排序算法,仿Windows文件名排序算法
    WCF、WPF、Silverlight和区别(转)
    线程组的介绍
    python基础字符串的修改
    c语言
    python 字典
    单元测试相关
    python列表
    如何才能设计出好的测试用例
    字符串查找
  • 原文地址:https://www.cnblogs.com/bignew/p/6638806.html
Copyright © 2011-2022 走看看