maven 下载源码

方法一:

    修改maven 的配置文件setting.xml

<profiles>  
<profile>  
    <id>downloadSources</id>  
    <properties>  
        <downloadSources>true</downloadSources>  
        <downloadJavadocs>true</downloadJavadocs>             
    </properties>  
</profile>  
</profiles>  
  
<activeProfiles>  
  <activeProfile>downloadSources</activeProfile>  
</activeProfiles> 

方法二:

IDEA修改maven配置

maven 源码下载

相关文章:

  • 2022-12-23
  • 2021-11-20
  • 2021-09-06
  • 2022-12-23
  • 2021-08-10
  • 2021-08-01
  • 2021-07-23
  • 2021-09-02
猜你喜欢
  • 2021-07-06
  • 2021-12-12
  • 2022-12-23
  • 2021-12-17
  • 2021-10-14
  • 2022-12-23
相关资源
相似解决方案