Hi,
In my pom I use
<resource>
<directory>src/main/resources/</directory>
<includes>
<include>**/*.ftlh</include>
</includes>
<filtering>false</filtering>
</resource>
but Myeclispe Version: 2017 CI 8 Build id: 15.0.1-20170912 on Windows 10 show me
Description Resource Path Location Type
Cannot install Web Fragment Module 3.0 facet. It is incompatibile with already installed facets: Dynamic Web Module 2.4. Please modify project configuration. pom.xml /xxxxxxx line 140 Maven Java EE Configuration Problem
but If I use / launch Maven from CLI all works without no problem then it’s seem a IDE bug.
After one day of work to not show this error in the IDE I modify the section of the POM with :
<resource>
<targetPath>templates/movetool</targetPath>
<directory>src/main/resources/templates/movetool/</directory>
<includes>
<include>**/*.ftlh</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
I forced to add targetPath istruction to have the files in the right directory but the error not showed without this parameter too then the problem seem to be the directory value.
This is not the best thing to have in my POM …
Is there another way to fix it using a a the first version of pom ?
Thank you