首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

使maven2在上载依赖包的同时上载其源代码包的方法

2012-08-31 
使maven2在下载依赖包的同时下载其源代码包的方法maven2下载依赖包的同时下载其源代码包使maven2在下载依

使maven2在下载依赖包的同时下载其源代码包的方法
maven2下载依赖包的同时下载其源代码包
使maven2在下载依赖包的同时下载其源代码包的方法:

1. 使用maven命令:mvn dependency:sources 下载依赖包的源代码。

2. 使用参数: -DdownloadSources=true 下载源代码jar。 -DdownloadJavadocs=true 下载javadoc包。

mvn dependency:sources -DdownloadSources=true -DdownloadJavadocs=true

Eclipse

mvn -DdownloadSources=true -DdownloadJavadocs=true -DoutputDirectory=target/eclipse-classes eclipse:eclipse

热点排行