zoukankan      html  css  js  c++  java
  • apache maven pom setting

    <?xml version="1.0" encoding="UTF-8"?>

    <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
    license agreements. See the NOTICE file distributed with this work for additional
    information regarding copyright ownership. The ASF licenses this file to
    you under the Apache License, Version 2.0 (the "License"); you may not use
    this file except in compliance with the License. You may obtain a copy of
    the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
    by applicable law or agreed to in writing, software distributed under the
    License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
    OF ANY KIND, either express or implied. See the License for the specific
    language governing permissions and limitations under the License. -->

    <!-- | This is the configuration file for Maven. It can be specified at two
    levels: | | 1. User Level. This settings.xml file provides configuration
    for a single user, | and is normally provided in ${user.home}/.m2/settings.xml.
    | | NOTE: This location can be overridden with the CLI option: | | -s /path/to/user/settings.xml
    | | 2. Global Level. This settings.xml file provides configuration for all
    Maven | users on a machine (assuming they're all using the same Maven | installation).
    It's normally provided in | ${maven.home}/conf/settings.xml. | | NOTE: This
    location can be overridden with the CLI option: | | -gs /path/to/global/settings.xml
    | | The sections in this sample file are intended to give you a running start
    at | getting the most out of your Maven installation. Where appropriate,
    the default | values (values used when the setting is not specified) are
    provided. | | -->
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <!-- localRepository | The path to the local repository maven will use to
    store artifacts. | | Default: ${user.home}/.m2/repository -->

    <!-- interactiveMode | This will determine whether maven prompts you when
    it needs input. If set to false, | maven will use a sensible default value,
    perhaps based on some other setting, for | the parameter in question. | |
    Default: true <interactiveMode>true</interactiveMode> -->

    <!-- offline | Determines whether maven should attempt to connect to the
    network when executing a build. | This will have an effect on artifact downloads,
    artifact deployment, and others. | | Default: false <offline>false</offline> -->

    <!-- pluginGroups | This is a list of additional group identifiers that
    will be searched when resolving plugins by their prefix, i.e. | when invoking
    a command line like "mvn prefix:goal". Maven will automatically add the group
    identifiers | "org.apache.maven.plugins" and "org.codehaus.mojo" if these
    are not already contained in the list. | -->
    <pluginGroups>
    <!-- pluginGroup | Specifies a further group identifier to use for plugin
    lookup. <pluginGroup>com.your.plugins</pluginGroup> -->
    </pluginGroups>

    <!-- proxies | This is a list of proxies which can be used on this machine
    to connect to the network. | Unless otherwise specified (by system property
    or command-line switch), the first proxy | specification in this list marked
    as active will be used. | -->
    <proxies>
    <!-- proxy | Specification for one proxy, to be used in connecting to the
    network. | <proxy> <id>optional</id> <active>true</active> <protocol>http</protocol>
    <username>proxyuser</username> <password>proxypass</password> <host>proxy.host.net</host>
    <port>80</port> <nonProxyHosts>local.net|some.host.com</nonProxyHosts> </proxy> -->
    </proxies>

    <!-- servers | This is a list of authentication profiles, keyed by the server-id
    used within the system. | Authentication profiles can be used whenever maven
    must make a connection to a remote server. | -->
    <servers>

    <server>
    <id>nexus</id>
    <username>admin</username>
    <password>admin123</password>
    </server>

    <server>
    <id>snapshots</id>
    <username>admin</username>
    <password>admin123</password>
    </server>

    <server>
    <id>releases</id>
    <username>admin</username>
    <password>admin123</password>
    </server>

    </servers>

    <mirrors>
    <!---->
    <mirror>
    <id>nexus</id>
    <url>http://192.168.220.207:8081/content/groups/public</url>
    <mirrorOf>*</mirrorOf>
    </mirror>

    <mirror>
    <id>nexus2</id>
    <url>http://192.168.220.207:8081/content/repositories/snapshots/</url>
    <mirrorOf>public-snapshots</mirrorOf>
    </mirror>

    <mirror>
    <id>oschina</id>
    <mirrorOf>*</mirrorOf>
    <name>Oschina Mirror</name>
    <url>http://maven.oschina.net/content/groups/public/</url>
    </mirror>

    <mirror>
    <id>ibiblio.org</id>
    <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>
    <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
    <mirrorOf>*</mirrorOf>
    </mirror>
    </mirrors>

    <profiles>
    <profile>
    <id>public-snapshots</id>
    <repositories>
    <repository>
    <id>public-snapshots</id>
    <url>http://192.168.220.207:8081/content/repositories/snapshots/</url>
    <releases>
    <enabled>false</enabled>
    </releases>
    <snapshots>
    <enabled>true</enabled>
    </snapshots>
    </repository>
    </repositories>
    <pluginRepositories>
    <pluginRepository>
    <id>public-snapshots</id>
    <url>http://192.168.220.207:8081/content/repositories/snapshots/</url>
    <releases>
    <enabled>false</enabled>
    </releases>
    <snapshots>
    <enabled>true</enabled>
    </snapshots>
    </pluginRepository>
    </pluginRepositories>
    <activation><activeByDefault>true</activeByDefault></activation>
    </profile>

    <profile>
    <id>downloadSources</id>
    <properties>
    <downloadSources>true</downloadSources>
    <downloadJavadocs>false</downloadJavadocs>
    </properties>
    </profile>
    </profiles>

    <activeProfiles>
    <activeProfile>public-snapshots</activeProfile>
    <activeProfile>downloadSources</activeProfile>
    </activeProfiles>

    </settings>

  • 相关阅读:
    关于virtual、非virtual继承函数的调用
    关于文件操作的文件格式与打开方式
    C++ 文件读写操作
    C++语法题
    检测java string变量是否含有中文
    常用知识库
    WMS仓储管理系统
    运输管理
    ipconfig/flushdns 清除系统DNS缓存
    cmd查看域名账号相关的命令
  • 原文地址:https://www.cnblogs.com/adolfmc/p/5940887.html
Copyright © 2011-2022 走看看