您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何使用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”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。