On Thu, Jun 25, 2009 at 7:51 AM, n000b<[email protected]> wrote:

> How can I
> let the Child B to know that the Child A has been build & the jar is added
> to the class path while building the Child B project.

I think you answered it in your subject line. :)  Add a dependency in B's pom:

<dependency>
  <groupId>my.group</groupId>
  <artifactId>A</artifactId>
  <version>${project.version}</version>
</dependency>

-- 
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to