I\'ve below pom.xml file
${basedir}
Your directory
specification is wrong. Do not use ${basedir}
but ${project.basedir}
, then it works as expected:
<directory>${project.basedir}</directory>
Even better would be to stick with the standard Maven directory layout and put your resources here:
<directory>src/main/resources</directory>