I have two projects, project A and B where project A depends on project
B.

1)  How is this represented in the pom.xml?  Would project B considered
a module in this case or an actual dependency?
In Project A's pom.xml, you would need something like this...

<dependencies>
       <dependency>
           <groupId>foo</groupId>
           <artifactId>B</artifactId>
           <version>1.0-SNAPSHOT</version>
           <type>jar</type>
           <scope>provided</scope>
       </dependency>
<dependencies>

2)  Is that functionality in place such that I could get project B as
either a binary or as source from cvs and then build it?

Maven gets the dependent jar from the remote/local repositories. You would have to define your remote repository(cvs) and specify the type for the same


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to