文章目录
- 1、maven clean后打包出现Cannot create resource output directory
- 2、把已有jar包打包进本地maven仓库
1、maven clean后打包出现Cannot create resource output directory
主要原因是target目录被别的程序占用了,最笨的办法是重启电脑,当然也可以把占用target目录的程序或进程关闭,可以参考这篇博客,maven打包失败 Cannot create resource output directory[已解决]
2、把已有jar包打包进本地maven仓库
使用到的场景是,项目需要的jar包没有在网络上面公开,将本地jar打包到maven仓库,在pom.xml直接引入相关的依赖即可使用!
需要用到的命令是:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
groupId、artifactId和version需要和pom中依赖的定义保持一致
<dependency><groupId>demo</groupId><artifactId>demo</artifactId><version>1.0</version>
</dependency>
参考博客:Maven之本地install