Env:
====
JDK 5.0
Maven 1.0.2
Multiproject plugin: 1.3.1
Context:
========
I have setup a multiproject dependency as follows:
(rh
(common)
(cs)
(dal)
)
where both cs and dal extend ${basedir}common/project.xml.
Problem:
========
(0) How do I suppress the download progress messages printed by Maven?
While this looks fine in "real-time", in batched reports, these
incremental progress updates are listed on separate lines (probably
becuase CR/LF is used instead of just CR), building up a huge
preface to the build of a project.
So how do I tell Maven not to print these messages?
(1) When triggering the build of dal (either locally or
thru the multi-project plugin), cs-1.0.jar is built
deposited into the repository but the build of
dal fails with the message that cs-SNAPSHOT.jar could not
be located.
The dependency specs in dal POM identifies cs-${pomVersion}.jar
as shown below; why is this lookinh for the SNAPSHOT version?
<dependencies>
<dependency>
<groupId>dcm</groupId>
<artifactId>cs</artifactId>
<version>${pom.currentVersion}</version>
<type>jar</type>
</dependency>
</dependencies>
Thanks,
Rk
x77309
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]