本文主要是介绍maven使用install打包时,程序包xxx不存在,pom中添加classifier分类标签解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.程序可以正常运行,但是打包时报错如下:**
**
2.解决办法:在引入的工程打包时pom中的打包插件修改如下:
<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId><executions><execution><goals><goal>jar</goal></goals><phase>package</phase><configuration><!--不一定要取api,可任意取--><classifier>api</classifier></configuration></execution></executions></plugin></plugins></build>
3.在需要引入的工程引入时指定:
<dependency><groupId>com.abc</groupId><artifactId>abc</artifactId><version>1.0.0</version><classifier>api</classifier></dependency>
这篇关于maven使用install打包时,程序包xxx不存在,pom中添加classifier分类标签解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!