我的maven工程中,.classpath文件中配置如下:这是我手动在eclipse中添加的配置文件生成编译文件的路径
<classpathentry kind="src" output="target/classes" path="src/main/resource"/>
当maven clean compile 运行之后,src/main/resource"目录下的文件没有自动编译到output 目录,但是 使用eclipse中的compile 命令却可以产生相应的编译后文件
改为如下:
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
maven.pomderived 设置为true derived是来源的意思,具体也不清楚该变量作用,但是配置了这个属性maven compile就可以正常使用了