I´m using Maven 3 with eclipse and I need to move some files *.properties to default lib bundle dir in EAR file.
Here´s my code:
<!-- language-all: lang-xml -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<version>5</version>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Built-on>${maven.build.timestamp}</Built-on>
<Developed-by>${project.organization.name}</Developed-by>
<Revision>${buildNumber}</Revision>
</manifestEntries>
</archive>
</configuration>
</plugin>
I have this properties files in the path: src/main/resources and I need to copy to default lib bundle dir, how I do this?