Please some advice on the usage of the eclipse:eclipse command to generate the 
correct eclipse classpath file:
I have the following filtering in my pom.xml:
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/application.properties</include>
                </includes>
            </resource>

            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
            </resource>
        </resources>

If I run eclipse:eclipse it generates the .classpath  file that has the 
following entry:
    <classpathentry excluding="**/*.java" 
including="**/*.application.properties" kind="src" path="src/main/resources"/>

Question: how can I configure the eclipse:eclipse goal to to not generate this 
including part ?

I see the relation with the maven config above, but I dont' want this :(... I 
can't find a way that the eclipse:eclipse goal "ignores" the filter....:(

Please some advice?

I am using maven 2.0.9 and not have any extra eclipse plugin configuration.

-- Ed


_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

Reply via email to