> As one has to declare a certain version number in A's pom.xml there is no > way to tell maven always to use the development-version (or trunk-version) > of B and C which haven't been released so far.
Use SNAPSHOT-versioned artifacts on all artifacts plus frequent deployment of latest snapshots (via CI server perhaps) plus updatePolicy of always for the repo these artifacts are being deployed into should get you down the right path. Otherwise keep checking in (and out) sources and build from top parent if there is one. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
