zoukankan      html  css  js  c++  java
  • maven的配置

    <settings xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
    http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository>d:maven epo</localRepository>
    <usePluginRegistry/>

    <servers>
    <server>
    <id>bbtree-snapshots</id>
    <username>bbtree</username>
    <password>bbtree123456</password>
    </server>

    <server>
    <id>bbtree-releases</id>
    <username>bbtree</username>
    <password>bbtree123456</password>
    </server>
    <server>
    <id>3rd-party</id>
    <username>bbtree</username>
    <password>bbtree123456</password>
    </server>
    </servers>

    <mirrors>
    <mirror>
    <id>Hyww Maven</id>
    <name>all repository mirror</name>
    <mirrorOf>*</mirrorOf>
    <url>http://10.0.0.230:8081/nexus/content/groups/public</url>
    </mirror>
    </mirrors>

    <profiles>
    <profile>
    <id>Hyww Maven</id>
    <repositories>
    <repository>
    <id>central</id>
    <url>http://central</url>
    <releases>
    <enabled>true</enabled>
    </releases>
    <snapshots>
    <enabled>false</enabled>
    <!-- <updatePolicy>always</updatePolicy> -->
    </snapshots>
    </repository>
    </repositories>
    <pluginRepositories>
    <pluginRepository>
    <id>central</id>
    <url>http://central</url>
    <releases>
    <enabled>true</enabled>
    </releases>
    <snapshots>
    <enabled>false</enabled>
    <!-- <updatePolicy>always</updatePolicy> -->
    </snapshots>
    </pluginRepository>
    </pluginRepositories>
    </profile>
    </profiles>

    <activeProfiles>
    <activeProfile>Hyww Maven</activeProfile>
    </activeProfiles>

    </settings>

  • 相关阅读:
    Jmeter之Web测试(一)
    Appium 提高脚本复用、可配置性
    Appium 解决中文输入问题
    Appium Python Driver Api
    Appium Android 屏幕滑动
    Android logcat使用
    android adb:电池与电量
    Loadrunner测试json接口
    python输出1到100之和的几种方法
    python 随机生成用户名、密码、手机号码
  • 原文地址:https://www.cnblogs.com/oymx/p/5345878.html
Copyright © 2011-2022 走看看