91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用maven setting.xml

發布時間:2021-10-11 11:38:13 來源:億速云 閱讀:131 作者:iii 欄目:編程語言

這篇文章主要介紹“如何使用maven setting.xml”,在日常操作中,相信很多人在如何使用maven setting.xml問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用maven setting.xml”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

<?xml version="1.0" encoding="UTF-8"?>  
<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">  
  
    <!-- 默認的值是${user.home}/.m2/repository -->  
    <!--<localRepository>C:\Users\Administrator\.m2\repository</localRepository> -->   
  
    <!-- 如果Maven要試圖與用戶交互來得到輸入就設置為true,否則就設置為false,默認為true。 -->  
    <interactiveMode>true</interactiveMode>    
    <!-- 如果Maven使用${user.home}/.m2/plugin-registry.xml來管理plugin的版本,就設置為true,默認為false。 -->  
    <usePluginRegistry>false</usePluginRegistry>  
  
    <!-- 如果構建系統要在離線模式下工作,設置為true,默認為false。 如果構建服務器因為網絡故障或者安全問題不能與遠程倉庫相連,那么這個設置是非常有用的。 -->  
    <offline>false</offline>    
    <mirrors>  
        <mirror>  
            <id>company name</id>  
            <mirrorOf>central</mirrorOf>  
            <name>Nexus company name</name>  
            <url>http://nexus.devops.sf-pharma.com/repository/maven-public/</url>  
        </mirror>  
    </mirrors>
	<!--此處設置的用戶名和密碼都是nexus的登陸配置-->
	 <servers>
		 <server>
		  <id>maven-releases</id>  <!--對應pom.xml的id=releases的倉庫-->
		  <username>cicd_user</username>
		  <password>cicd_xxx_devops</password>
		</server>
		 <server>
		  <id>maven-snapshot</id> <!--對應pom.xml中id=snapshots的倉庫-->
		  <username>cicd_user</username>
		  <password>cicd_xxx_devops</password>
		</server>
	  </servers>    
    <!-- settings.xml中的profile是pom.xml中的profile的簡潔形式。 它包含了激活(activation),倉庫(repositories),插件倉庫(pluginRepositories)和屬性(properties)元素。   
        profile元素僅包含這四個元素是因為他們涉及到整個的構建系統,而不是個別的POM配置。 如果settings中的profile被激活,那么它的值將重載POM或者profiles.xml中的任何相等ID的profiles。 -->  
    <profiles>  
        <profile>  
            <id>default</id>  
            <activation>  
                <activeByDefault>true</activeByDefault>  
                <jdk>1.8</jdk>  
            </activation>  
            <repositories>  
                <repository>  
                    <id>maven-releases</id>  
                    <name>Maven Releases</name>  
                    <url>http://nexus.devops.xxx.com/repository/maven-releases/</url>  
                    <releases>  
                        <enabled>true</enabled>  
                    </releases>  
                    <snapshots>  
                        <enabled>false</enabled>  
                    </snapshots>  
                    <layout>default</layout>  
                </repository>  
                <repository>  
                    <id>maven-snapshot</id>  
                    <name>Maven Snapshots</name>  
                    <url>http://nexus.devops.xxx.com/repository/maven-snapshots/</url>  
                    <releases>  
                        <enabled>false</enabled>  
                    </releases>  
                    <snapshots>  
                        <enabled>true</enabled>  
                    </snapshots>  
                    <layout>default</layout>  
                </repository>  
            </repositories>  
        </profile>  
    </profiles>  
    <!-- activations是profile的關鍵,就像POM中的profiles,profile的能力在于它在特定情況下可以修改一些值。   
        而這些情況是通過activation來指定的。 -->  
    <!-- <activeProfiles/> -->    
</settings>

到此,關于“如何使用maven setting.xml”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泸溪县| 祁门县| 兴仁县| 香河县| 吉林市| 青铜峡市| 瓮安县| 万源市| 大安市| 磐石市| 湛江市| 应用必备| 五莲县| 五家渠市| 恭城| 大同县| 开化县| 平果县| 玉龙| 甘谷县| 宁陕县| 色达县| 大新县| 瑞丽市| 青阳县| 城步| 施秉县| 泗阳县| 塘沽区| 枣阳市| 河曲县| 万山特区| 贵溪市| 花莲县| 明光市| 玉树县| 巢湖市| 绥宁县| 灵武市| 临潭县| 海原县|