2021-05-12 14:32:11
Maven 下載 原始碼和javadoc 命令
摘要:我們在寫程式碼時候,往往是想檢視一下原始碼,看看原始碼的一些細節內容。一般情況下,在IDE(如eclipse)中近僅僅只需按住ctrl+ 點選對應的方法即可進入對應的原始碼部分。但是有些時候很多依賴項並不會預設下載對應的原始碼,因此,需要執行以下命令讓他自動下載。那麼一般需要完成以下三步即可:
1:Maven命令下載原始碼和Javadocs
當在IDE中使用Maven時如果想要看參照的jar包中類的原始碼和javadoc需要通過maven命令下載這些原始碼,然後再進行引入,通過mvn命令能夠容易的達到這個目的:
mvn dependency:sources
mvn dependency:resolve -Dclassifier=javadoc
命令使用方法:首先進入到相應的pom.xml目錄中,然後執行以上命令:
第一個命令是嘗試下載在pom.xml中依賴的檔案的原始碼。
第二個命令:是嘗試下載對應的javadocs
2:通過組態檔新增
開啟maven組態檔 setting.xml檔案(MAVEN_HOME/conf/settings.xml) 增加如下設定:
<profiles>
<profile>
<id>downloadSources</id>
<properties>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>downloadSources</activeProfile>
</activeProfiles>
3:設定eclipse
Window > Preferences > Maven and checking the "Download Artifact Sources" and "Download Artifact JavaDoc" options。如下所示:
設定了這三步就可以下載對應的原始檔了。
Maven構建過程詳解 http://www.linuxidc.com/Linux/2016-03/129432.htm
利用GitHub搭建個人Maven倉庫 http://www.linuxidc.com/Linux/2016-04/130197.htm
使用Maven在NetBeans下構建Wicket專案 http://www.linuxidc.com/Linux/2016-04/130070.htm
《Maven實戰》:Maven實戰教學PDF http://www.linuxidc.com/Linux/2014-12/110503.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-05/131572.htm
相關文章