错误overlay id is not a dependency project原因分析
Posted ACaptain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误overlay id is not a dependency project原因分析相关的知识,希望对你有一定的参考价值。
之前按下面配置,一直会报标题中错误,有的同学说改成<overlay><id></id></overlay>就可以了,然而我这里竟然错误依旧。
奇怪的是间隔了一段时间之后,现在无论哪种方式都不报错误了。
配置如下
1.
<dependency>
<groupId>cn.bsdn</groupId>
<artifactId>yandz-cn-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>war</type>
</dependency>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>${maven.compiler.encoding}</encoding>
<source>1.6</source>
<target>1.6</target>
<overlays>
<overlay>
<groupId>cn.bsdn</groupId>
<artifactId>yandz-cn-web</artifactId>
</overlay>
</overlays>
</plugin>
但是在报错时候,查看了project的properties下Deployment Assembly选项中可以看到项目yandz-cn-web,但是在Project References选项中没有看到yandz-cn-web被勾选。
目前:Deployment Assembly选项和Project References选项中都可以看到对项目yandz-cn-web的依赖。
结论:maven-war-plugin其实仍然是在原本eclipse项目依赖理论基础上实现的,只不过插件默认帮你完成了项目之间的依赖操作而已,期初的报错应该是插件下载问题导致的。
2.其它,顺便解释下下面两个属性用途
2.1)<attachClasses>true</attachClasses>在使用maven-war-plugin打包是会将classes中的文件打包成jar并发布到maven库中,生成的war和不配置该属性时一样。
2.2)<archiveClasses>true</archiveClasses>在使用maven-war-plugin打包是会将classes中的文件打包成jar不发布maven库,但会放入生成war包的lib目录中,当然classes就会为空了。
2.3) <overlay><id>yandz-cn-web</id></overlay>作用是将依赖的war类型项目中内容 生成到所打的war包中,项目中的classes文件会以jar形式引入,其它内容会合并到war目录。
以上是关于错误overlay id is not a dependency project原因分析的主要内容,如果未能解决你的问题,请参考以下文章
错误日志NoSuchMethodError/Required String parameter 'id' is not present
iOS开发——An App ID with identifier "*****" is not avaliable
Required Long parameter ‘id’ is not present
NextJS Apollo“queryData.s-s-rInitiated is not a function”路由错误
Flink producer attempted to use a producer id which is not currently assigned to its transaction(代码片