对于maven 项目
首先结束pom.xm依赖库
深入比较几种maven仓库的优先级
Maven与IDEA_idea打包和maven打包区别_快乐搬砖的博客-CSDN博客
pom.xml通过什么下载依赖和驱动呢?
以及maven下的settings.xml
<settings xmlns="http://maven.apache.org/SETTINGS/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/4.0.0 https://maven.apache.org/xsd/settings-4.4.0.xsd">
jar包
https://www.cnblogs.com/zhangweizhong/p/13582903.html
plugin插件
maven项目中pom.xml的build中的plugin你真的了解过吗?都是干货_pom 中plugin_is me monday的博客-CSDN博客
一、插件安装的常见路径
在我们使用Idea开发时,经常需要下载各种插件以提高我们的开发效率。而Idea插件安装的常见路径是什么呢?下面介绍几个常见的路径:
- /Users/xxx/Library/Application Support/IdeaICxxx/xxx/plugins
- /Users/xxx/Library/Application Support/JetBrains/IdeaICxxx/plugins
- /Applications/IntelliJ IDEA.app/Contents/plugins
这几个路径都是Idea插件安装的默认路径,我们可以在Idea的设置里面查看和修改插件安装路径。
二、插件安装路径的修改方法
如果我们想要修改Idea插件的安装路径,可以按照以下步骤进行:
- 打开Idea,点击“Preferences”进入设置页面。
- 进入“Plugins”选项卡,可以看到“Plugin Path”。
- 在“Plugin Path”下方的输入框中输入自己想要的插件安装路径。
IDEA插件与Maven插件的区别详解:两种完全不同插件,且本地存放也是完全不同的
IDEA插件路径如上:
mave插件路径如下:首先找到自己本地仓库地址,或者设置settings.xml
<localRepository>D:\repository-teacher</localRepository>
对于官网下载好依赖jar或者插件如果比如
<groupId>org.codehaus.mojo</groupId>
<!-- 点.表示:目录的节点。如上说明仓库目录 找到 org/codehaus/mojo ;-->
<artifactId>cobertura-maven-plugin</artifactId>
<!--点.表示:目录的节点。如上说明仓库目录
找到 org/codehaus/mojo/cobertura-maven-plugin ;-->
<version>2.1.1</version>