I'm debugging a problem that happens in both 2.0.8/9-SNAPSHOT and
2.1-SNAPSHOT...that is project.getRunTimeArtifacts returns an empty list
even when it clearly should not. I debug into the project and I see that
all the getXXXArtifacts make a call like this:
if ( a.getArtifactHandler().isAddedToClasspath() )
{
The trouble is, I cannot find any place that the backing variable
addedToClasspath is set. (and it's not exposed via a setter in the
ArtifactHandler interface) Am I blind or is there something else going
on here? It seems to me like all these new get[Scope]Artifacts must be
broken.
--Brian