Looking for a better solution....
My web application relies on a database laye (which is packaged and
installed as a *.jar file and made available to the web layer at runtime).
In order to copy some of the property files (such as jdbc.properties,
hibernate.cfg.xml, etc) from database layer's resource directory to WEB-INF/
classes directory, I specified the the following in the web layer's pom.xml
(see below).
The only trouble is that when I run "mvn eclipse:eclipse", I notice the path
I specified in the <directory>
tag is added to the .classpath which is not what I want (I only want the
directory for its property files). For now, I have to go into .classpath to
delete the entry manually. Just wondering if there's a way to exclude this
from the ?
<build>
<finalName>treebase-web</finalName>
<defaultGoal>install</defaultGoal>
<resources>
<resource>
<directory>${basedir}/../database-object/src/main/resources</directory>
<includes>
<include>*.*</include>
</includes>
</resource>
</resources>
</build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]