zoukankan      html  css  js  c++  java
  • maven私服客户端配置

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
     3           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
     5     <localRepository>D:DataCenterMavenRepository</localRepository>
     6   <pluginGroups>
     7   </pluginGroups>
     8   <proxies>
     9   </proxies>
    10   <servers>
    11   </servers>
    12   <mirrors>
    13   </mirrors>
    14   <profiles>
    15     <profile>
    16         <id>teamRepository</id>
    17         <activation>
    18             <activeByDefault>true</activeByDefault>
    19             <jdk>1.8</jdk>
    20         </activation>
    21         <properties> 
    22             <maven.compiler.source>1.8</maven.compiler.source> 
    23             <maven.compiler.target>1.8</maven.compiler.target> 
    24             <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> 
    25         </properties>
    26         <repositories>
    27             <repository>
    28                 <id>nexus</id>
    29                 <name>nexus</name>
    30                 <url>http://xieqq2:8081/nexus/content/groups/public/</url>
    31                 <releases><enabled>true</enabled></releases>
    32                 <snapshots><enabled>true</enabled></snapshots>
    33             </repository>
    34         </repositories>
    35     </profile>
    36   </profiles>
    37   <activeProfiles>
    38     <activeProfile>teamRepository</activeProfile>
    39   </activeProfiles>
    40 </settings>
  • 相关阅读:
    数组和链表
    IAP升级
    使用Git和Github来管理自己的代码和笔记
    Eeprom和Flash的区别
    程序员的七种武器
    数据结构和算法的关系
    STVD、IAR两种编译器比较
    STM32与STM8操作寄存器的区别
    Linux用户身份与文件权限
    地图缩放到指定经纬度
  • 原文地址:https://www.cnblogs.com/guanghe/p/9304683.html
Copyright © 2011-2022 走看看