Noel J. Bergman wrote:

I am having the hardest time getting Maven and Forrest to work together.


I'll be watching your results closely, since that's one of the things we've
talked about doing.



I had to make a change to the plugin as it was last distributed by
Leo.  The following file:

${forrest-plugin}/plugin-resources/forrest.build.xml

Had to be modified to provide intelligent parent forrest.properties
files.

I removed all the

<property file="${project.home}/../../forrest.properties"/>

entries (all the ones that blindly went to parent directories), which
was around line 55.

I replaced them with the following two lines:

<property name="parent.project.home" value="${project.home}"/>
<property file="${parent.project.home}/forrest.properties"/>

That way if there is a parent project, we can set that value in
the forrest.properties file.  If not, it will only reload the same
values.  There is no risk of going to a place that cannot exist
as is what happened before.


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to