And with multiproject, the
dependency version should be centralized. I guess the only way to do
this is to use the jar override mechanism. Also, I cannot figure out
how to correctly get the dependencies between projects to work. It's
says it cannot download the jar file.
I have a project with sub projects and the version is "centralized" in a way, as it is defined in the top level project.xml that the sub projects inherit with <extend> tag (the sub projects don't define the version in their own project.xml).
The dependencies are defined as follows, and because the reactor determines the order of the build (I use a custom reactor build, but I think this should also happen with multiproject), the dependencies work out fine. No jar override is used.
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>someArtifact</artifactId>
<version>${pom.currentVersion}</version>
</dependency>--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
