zoukankan      html  css  js  c++  java
  • 买了新电脑,重新弄环境配置

    1. git push时,提示公钥验证失败。  添加ssh。 https://www.jianshu.com/p/eb742fe78b93

    2. mvn的settings.xml   因为自带的setting有许多是国外的源,所以要用国内镜像。 

    <?xml version="1.0" encoding="UTF-8"?>
    <settings> 
    <localRepository>D:Toolsjavamaven
    epository</localRepository><!--需要改成自己的maven的本地仓库地址-->
        <mirrors>
            <mirror>
                <id>alimaven</id>
                <name>aliyun maven</name>
                <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
                <mirrorOf>central</mirrorOf>
            </mirror>
        </mirrors>
      <profiles>
        <profile>
           <id>nexus</id> 
            <repositories>
                <repository>
                    <id>nexus</id>
                    <name>local private nexus</name>
                    <url>http://maven.oschina.net/content/groups/public/</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>
            </repositories>
            
            <pluginRepositories>
                <pluginRepository>
                <id>nexus</id>
                <name>local private nexus</name>
                <url>http://maven.oschina.net/content/groups/public/</url>
                <releases>
                    <enabled>true</enabled>
                </releases>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile></profiles>
    </settings>
    
    setting.xml
  • 相关阅读:
    VMware6.0-vCenter的安装准备及安装
    VeeamBackup9.5安装与配置
    VeeamOne(Free Edition 9.5 )-安装与配置
    UIDatePicker
    UIImagePicker照片选择器
    UIImageView
    UILabel
    UIScrollView 期本使用方法
    UISegment
    UISlide
  • 原文地址:https://www.cnblogs.com/zqlmmd/p/12403294.html
Copyright © 2011-2022 走看看