another issue:
I�m trying to follow the great article at
http://www-106.ibm.com/developerworks/java/library/j-maven/
this article suggested me to create a project tree such as:
schoolbus
|
+----- schoolbus-core
+----- schoolbus-quaestio
and then to create a project file for each sub-project with the
<extends> tag....
on the master project.xml I included:
<dependencies>
<dependency>
<groupId>schoolbus</groupId>
<artifactId>schoolbus-core</artifactId>
<version>snapshot</version>
<properties>
<ear.bundle.jar>true</ear.bundle.jar>
</properties>
<url>https://schoolbus.dev.java.net</url>
</dependency>
<dependency>
<groupId>schoolbus</groupId>
<artifactId>schoolbus-quaestio</artifactId>
<version>snapshot</version>
<properties>
<ear.bundle.war>true</ear.bundle.war>
</properties>
<url>https://schoolbus.dev.java.net</url>
</dependency>
</dependencies>
but there is a problem. When I try to run any maven command, the maven
tryies to download the sub-projects jars and then it fails.
How can I fix that ?
On Fri, 05 Nov 2004 14:48:01 -0500, Christopher L Merrill
<[EMAIL PROTECTED]> wrote:
> Charles Daniels wrote:
> > It's definitely not the best way to fix it. You can override default
> > values for plugin properties by adding the property to your project's
> > project.properties file.
>
> Thanks! I knew there must be a better way...just hadn't taken the
> time to research it, yet.
>
> --
> -------------------------------------------------------------------------
>
>
> Chris Merrill | http://www.webperformanceinc.com
> Web Performance Inc. | http://www.webperformancemonitoring.net
>
> Website Load Testing, Stress Testing, and Performance Monitoring Software
> -------------------------------------------------------------------------
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]