Re: Query around maven.xml in Maven 2.0

2006-04-25 Thread Tom Joad
Hi,
With maven2 there isn'  t maven.xml anymore.
you configure connexion with  ${user.home}/.m2/settings.xml.(by default)
You have to read how to use of each plugins
 and to configure them and to perform task .
You set parameters listed for plugin goals  under  tag
under  tag as example below.
Please read http://maven.apache.org/plugins/index.html
and follow links for plugin listed. You have to know plugin name is
maven-THEPLUGIN-plugin.
Additionally you can find others plugins  in http://mojo.codehaus.org/ .
Here is an example of use of maven-war-plugin for my project which is
not maven layout conform. In fact it is an eclipse web dynamic
project.


maven-war-plugin
2.0-beta-2

  Myproject/WebContent
  Myproject/WebContent/WEB-INF/web.xml
  **/context.xml

  


Tom.


2006/4/25, Utpal Sen <[EMAIL PROTECTED]>:
> Hi,
> I am a new to maven. In the documentation that I have I see a reference to
> maven.xml and project.properties but in the information posted on
> maven.orgit seems like in the new version we don't need to use either
> of them and can
> perform the tasks through pom.xml only. Can anyone kindly validate this?
>
> Thanks in advance
> Utpal
>
>

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



Re: Query around maven.xml in Maven 2.0

2006-04-25 Thread Clifton Craig
On Tuesday 25 April 2006 4:19 am, Utpal Sen wrote:
> Hi,
> I am a new to maven. In the documentation that I have I see a reference to
> maven.xml and project.properties but in the information posted on
> maven.orgit seems like in the new version we don't need to use either
> of them and can
> perform the tasks through pom.xml only. Can anyone kindly validate this?
>
> Thanks in advance
> Utpal

Hello,

I'm also a newcomer. I can validate, however, that maven.xml is no longer used 
in Maven2. The same goes for project.properties. Everything is configured 
through the POM and plugins.

--- 
Clifton C. Craig, Software Engineer
Intelligent Computer Systems -  A Division of GBG
[EMAIL PROTECTED]
[EMAIL PROTECTED]

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



Query around maven.xml in Maven 2.0

2006-04-25 Thread Utpal Sen
Hi,
I am a new to maven. In the documentation that I have I see a reference to
maven.xml and project.properties but in the information posted on
maven.orgit seems like in the new version we don't need to use either
of them and can
perform the tasks through pom.xml only. Can anyone kindly validate this?

Thanks in advance
Utpal