problem compiling a sub-project of a project

2007-01-03 Thread Martin Moser
Hi all, I have troubles compiling my sub-projects. I have following project-structure: -base-project --sub-project 1 --- subsub-project 1 of sub-project 1 --- subsub-project 2 of sub-project 1 -- sub-project 2 --- subsubproject 1

RE: problem compiling a sub-project of a project

2007-01-03 Thread Mohni, Daniel
this should work with stable maven 2.0.4 - Daniel -Original Message- From: Martin Moser [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 3:58 PM To: users@maven.apache.org Subject: problem compiling a sub-project of a project Hi all, I have troubles compiling my sub

Re: problem compiling a sub-project of a project

2007-01-03 Thread Roman Kalukiewicz
Your sub-project1 references base-project as it's parrent. This means it has to inherit all configuration from base-project so it has to be downloaded. If your sub-project1 does not inherit anyting from base, then omit parrent tag. It is perfectly legal to have multimodule project where

Re: problem compiling a sub-project of a project

2007-01-03 Thread Martin Moser
Hi all, thanks for your fast response. @Roman My sub-project inherits some dependency and plugin defintions from the base-project, so I can't omit the parent tag. So I think that I have to compile the base-project all the time. That's fine with me. I was just curious, whether it's possible or

RE: problem compiling a sub-project of a project

2007-01-03 Thread Mohni, Daniel
To: Maven Users List Subject: Re: problem compiling a sub-project of a project Hi all, thanks for your fast response. @Roman My sub-project inherits some dependency and plugin defintions from the base-project, so I can't omit the parent tag. So I think that I have to compile the base