I have multiple projects, lets call them A, B, and C. A is a util project, B is the data store layer, and C and something that uses the data store. So, A depends on nothing, B depends on A, and C depends on B. I am also trying to create multiple builds for different environments, dev, test, production, and have created related profiles in each project for each build and specify the dependencies in those profiles. For instance, B-dev-SNAPSHOP depends on A-dev-SNAPSHOT, and C-dev-SNAPSHOT depends on B-dev-SNAPSHOT. And I specify the environment through a system property.
The problem I am running into is that when I build C, it includes the dev profile and adds B-dev-SNAPSHOT as a dependency, but the environment system property doesn't seem to get passed to the pom of B-dev-SNAPSHOT and therefore the A-dev-SNAPSHOT dependency isn't included. Am I going about this the wrong way? Thanks, Jeff. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
