如何在IDEA里查看引入MAVEN依赖包源码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在IDEA里查看引入MAVEN依赖包源码相关的知识,希望对你有一定的参考价值。
idea有import功能,可以导入本地源码和类库。 点File--> Import Porject,选择你本地的源码路径,根据向导提示导入,idea兼容四种IDE的工程: 1、Eclipse .project .classpath file,也就是你的源码中有eclipse的工程文件.project .classpath,... 参考技术A 点击设置面板(ctrl+alt+s),选择“paths”,在classpath标签项中将你在globallibraries中创建的项选中就可以啦。在global
libraries创建的项如果不被选择,是不会添加到项目中的。
IDEA maven 项目如何上传到私服仓库
前言:idea maven 发布版本到私服(快照和正式版)。我有个项目( jar 包源码),其他 maven 项目能直接引入依赖就最好了,所以必须将这个 jar 包源码发布到 maven 私服仓库里去。这里记录一下。
一、发布版本
<version>1.0-SNAPSHOT</version>
在 pom 文件中添加如下代码:
<!--发布到私服: 设置 version 后,选择 maven 的 deploy 命令--> <distributionManagement> <repository> <id>nexus</id> <name>nexus Repository RELEASES</name> <url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus</id> <name>nexus Repository SNAPSHOTS</name> <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
然后,idea maven 的 选择设置好的 setting.xml 文件
最后,在 idea maven 中选择 deploy 命令
参考文档:https://www.cnblogs.com/rwxwsblog/p/6029636.html
以上是关于如何在IDEA里查看引入MAVEN依赖包源码的主要内容,如果未能解决你的问题,请参考以下文章