I've created a properties file to externalize my JSF pages. Its location is a source package in the web application:
I've included it in the faces-config.xml file with the full path:
<application>
<locale-config>
<default-locale>en</default-locale>
</locale-config>
<resource-bundle>
<base-name>com.daslernen.bundles.messages</base-name>
<var>bundle</var>
</resource-bundle>
</application>
But if I explore the contents of the war file inside the ear file as suggested in this answer to the same problem I don't find not the package neither the properties file.
How can I make Maven to include it in the build?
PS: If it helps I'm using Netbeans and a Maven project created with the wizard.