I thought I would raise this on the general list since it could involve API changes in the Maven Model for Maven 3.0. I've run into a situation where Boolean values in Maven model are causing problems with interpolation.The general issue is here: http://jira.codehaus.org/browse/MNG-1995
I've put in a hierarchical based model builder that does not modify the original models but rather copies the values into a target model as it builds the inheritance tree. The process is inheritance first, then interpolation. The problem occurs because a boolean value that contains an uninterpolated property always returns false, which means that the copy is always a value of false, not the property itself, which may have interpolated to a value true. In the Jira issue, John mentioned changing in the Boolean to String, which would solve the problem here. Thoughts? Thanks, Shane
