Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Hi ricardo, i am not familiar whith the place of DefaultLibBundleDir. Please describe the folder structure of the ear and where you would like to putin the property files. – FunThomas424242 Feb 11 '12 at 15:03
In my mind, this is a ear file structure: documentation.progress.com/output/Iona/e2a/asp/6.0/j2ee/… – FunThomas424242 Feb 11 '12 at 15:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.