Re: [m2] Adding surefire-report => Infinite loop

2005-12-15 Thread Pete
I got the same a few weeks ago and posted, but no replies yet. On 16/12/05, Sri Sankaran <[EMAIL PROTECTED]> wrote: > > I wanted to run the surefire-report:report goal as part of the test > phase. So, I add the following to my pom > > > >org.codehaus.mojo >surefire-report-mav

Re: Assembly plugin triggers execution of all previous phases

2005-12-15 Thread Nitko2
Ok, is there a way to turn it off. If not, can you point me to the code where I can turn it off. Then I'll copy it, name it decoupled-assembly and use it. This way I can use assembly only in one phase which is executed after package. And I need to use it in two phases. Thanks, Filip. John

RE: {m2] plugin execution order

2005-12-15 Thread Patrick O'shea
Hi, When i have multiple plugins for the same phase in a profile in a single pom, they don't get executed in the correct order . thanks, Patrick O'Shea   "David Jackman" <[EMAIL PROTECTED]> 12/15/2005 06:39 PM Please respond to "Maven Users List" To "Maven Users List" cc

Re: StackOverFlow Error

2005-12-15 Thread mylene
Hi Deepika.S What is the (relevant) output when you run your command with the advised -e switch? Mylene On 12/15/05, Deepika.M <[EMAIL PROTECTED]> wrote: > When I run "mvn javadoc:javadoc" for my project I am getting following > exception... > > javadoc: In doclet class com.sun.tools.doclets.st

Re: [m2] WebApp Directory Layout

2005-12-15 Thread Keisuke Matsubara
Hi, Green No, WEB-INF/classes is used mainly for .class files. Properties files can be included too , if you want. When your directory are following, you will find both class files and properties files in WEB-INF/classes . src/main/java/**/*.java src/main/resources/**/*.properties Thanks, Kei

Re: Posts in thread: Pb while installing maven-andromda plug-in

2005-12-15 Thread Somasundaram P
Hi all, Thk u for the reply, but still it is not working. I have installed Maven2.0.1 v & the command : mvn -v is displaying the version of maven(ie.2.0.1).It is working. I' m not able to proceed with: mvn archetype:create -DgroupId=com.my

Re: SureFire pertest setting not working correctly?

2005-12-15 Thread Jason van Zyl
John O. Hampton, Jr. wrote: Hi, I'm trying to use the surefire plugin version 2.1.1. When I set forkMode to pertest, all of my test fail. It looks like the setUp method in my JUnit test is not being called before the method is executed. Am I doing something wrong? I'll take a look but a

RE: [m2] WebApp Directory Layout

2005-12-15 Thread Law Green-A20134
Thank you, Keisuke In your solution, I suppose WEB-INF/classes is used for properties files instead of .class files, right? Regards, Green -Original Message- From: Keisuke Matsubara [mailto:[EMAIL PROTECTED] Sent: 2005年12月16日 12:32 To: Maven Users List Subject: Re: [m2] WebApp Director

RE: [m2] can't read url exception

2005-12-15 Thread Law Green-A20134
Yes, I can from both IE and Firefox. Regards, Green -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: 2005年12月16日 12:33 To: Maven Users List Subject: Re: [m2] can't read url exception It might be timing out...just a guess. Can you reach that URL consistently from your

Re: m2 - my technique for installing 3rd party jars

2005-12-15 Thread Brill Pappin
Of course your right... but if you can't (as is often the case) or you want to be able to reproduce your build at will, the you do need to think about it. In my case, I've got a bunch of people who don't give a rats ass why it doesn't work when it doesn't... if I told them they had to install 20 j

Re: Building without unit tests

2005-12-15 Thread Brill Pappin
I'm not sure it does to the exact same thing but if they feature is removed without replacement I'll be complaining very loudly :) So far I'm finding the new POM a little heavy and not as easy to use as the old maven.xml file, but the functionality is still there for the most part. - Brill Pappin

Re: [M2] How to merge multi projects sites

2005-12-15 Thread Keisuke Matsubara
sorry , I had misspelled. rink --> link Keisuke Matsubara wrote: > Hi, > > I am searching how to merge multi projects sites. > My project has some sub modules. When I execute site goal , sites are > generated for each project ,but these contents are not rinked and not > have list of sub module

[M2] How to merge multi projects sites

2005-12-15 Thread Keisuke Matsubara
Hi, I am searching how to merge multi projects sites. My project has some sub modules. When I execute site goal , sites are generated for each project ,but these contents are not rinked and not have list of sub modules. My hope is following. - list of sub modules - rinking contents of projects

Re: New SAR Plugin

2005-12-15 Thread John Casey
First of all, thanks for the contribution! Please file a JIRA issue against the ear plugin if you have not already done so, and attach that patch. As for the SAR plugin, you should email the [EMAIL PROTECTED] mailing list to see what kind of interest you can drum up there. Our first preference

Re: [m2] can't read url exception

2005-12-15 Thread John Casey
It might be timing out...just a guess. Can you reach that URL consistently from your browser? -j Law Green-A20134 wrote: > Exactly, I am behind NTLM proxy. No idea how to workaround it. > > Edwin, I am generating site for maven project. > > Regards, > Green > > -Original Message- > Fro

Re: [m2] WebApp Directory Layout

2005-12-15 Thread Keisuke Matsubara
Hi, Green I fond following rules. src/main/resources -->WEB-INF/classes in war file src/main/webapp/ --> in war file Thanks, Keisuke Law Green-A20134 wrote: Hi, I am trying to use M2 for webapp (plain Servlet+velocity application) development. Is there any suggestion for the directory l

Re: [m2]Setting parameters in m2

2005-12-15 Thread John Casey
Actually, if I remember correctly, this outputDirectory is read-only in the compiler plugin. This means that you have to change the setting indirectly, in this case by configuring: target/classes See: http://maven.apache.org/maven-model/maven.html for more information. HTH, John Edwin

Re: [m2] WebApp Directory Layout

2005-12-15 Thread John Casey
IIRC, it's src/main/webapp, but check: http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html for more info. hth, john Law Green-A20134 wrote: > Thank you, Maria! > > Then do you have any suggestions for WebApp site location and script location? > > Add one more question, is there m2

[m2] Adding surefire-report => Infinite loop

2005-12-15 Thread Sri Sankaran
I wanted to run the surefire-report:report goal as part of the test phase. So, I add the following to my pom org.codehaus.mojo surefire-report-maven-plugin 2.0-beta-1 test report This

Re: [m2] WebApp Directory Layout

2005-12-15 Thread Stephen Duncan
src/main/webapp http://maven.apache.org/guides/mini/guide-webapp.html -Stephen On 12/15/05, Law Green-A20134 <[EMAIL PROTECTED]> wrote: > Thank you, Maria! > > Then do you have any suggestions for WebApp site location and script location? > > Add one more question, is there m2 command deploy Web

Re: [m2] javadoc report plugin not working with site goal

2005-12-15 Thread Allan Ramirez
Oh Right! Now I remember.. Thanks :D -allan Yann Le Du wrote: It does indeed exist and is corrected : http://jira.codehaus.org/browse/MNG-1249 Correction will be available in maven-javadoc-plugin 2.0-beta-3 in a few days. 2005/12/16, Allan Ramirez <[EMAIL PROTECTED]>: Please file a jira

RE: [m2] WebApp Directory Layout

2005-12-15 Thread Law Green-A20134
Thank you, Maria! Then do you have any suggestions for WebApp site location and script location? Add one more question, is there m2 command deploy WebApp to a website? TIA, Green -Original Message- From: Maria Odea Ching [mailto:[EMAIL PROTECTED] Sent: 2005年12月16日 11:05 To: Maven Users

Re: [m2]Setting parameters in m2

2005-12-15 Thread Edwin Punzalan
Please see: http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html You want to set ouputDirectory in the compiler configuration. Am not sure though if -DoutputDirectory will work, so just configure the plugin in your project pom.xml. See http://maven.apache.org/plugins/ma

Re: [m2] javadoc report plugin not working with site goal

2005-12-15 Thread Yann Le Du
It does indeed exist and is corrected : http://jira.codehaus.org/browse/MNG-1249 Correction will be available in maven-javadoc-plugin 2.0-beta-3 in a few days. 2005/12/16, Allan Ramirez <[EMAIL PROTECTED]>: > > Please file a jira issue (unless already exists) > http://jira.codehaus.org/browse/MNG

Re: [m2] clean plugin needs dependant plugins?

2005-12-15 Thread Edwin Punzalan
According to jira, this has been fixed in 2.0-alpha-3, if you're sure that its not working again, you can reopen http://jira.codehaus.org/browse/MNG-489 Chad Brandon wrote: Hi, Is there any reason why the clean plugin needs to have dependent plugins downloaded before it can do its thing?

Re: [m2] javadoc report plugin not working with site goal

2005-12-15 Thread Allan Ramirez
Please file a jira issue (unless already exists) http://jira.codehaus.org/browse/MNG -allan Mordo, Aviran (EXP N-NANNATEK) wrote: I have the maven-javadoc-plugin on my reports section. The problem is when I run the site:site goal the index.html only contains the site's menu and not the javado

Re: [m2] clean plugin needs dependant plugins?

2005-12-15 Thread Maria Odea Ching
Hi Chad, Please see http://maven.apache.org/plugins/maven-clean-plugin/dependencies.html. Regards, Odea Chad Brandon wrote: Hi, Is there any reason why the clean plugin needs to have dependent plugins downloaded before it can do its thing? It would be nice if it ignored all dependencie

Re: [m2] WebApp Directory Layout

2005-12-15 Thread Maria Odea Ching
Law Green-A20134 wrote: Hi, I am trying to use M2 for webapp (plain Servlet+velocity application) development. Is there any suggestion for the directory layout? Also I found the recommended directory layout page on the maven site: src/main/java Application/Library sources src/main/resou

RE: [m2] can't read url exception

2005-12-15 Thread Law Green-A20134
Exactly, I am behind NTLM proxy. No idea how to workaround it. Edwin, I am generating site for maven project. Regards, Green -Original Message- From: John Allen [mailto:[EMAIL PROTECTED] Sent: 2005年12月16日 1:36 To: 'Maven Users List' Subject: RE: [m2] can't read url exception I've also

[m2] WebApp Directory Layout

2005-12-15 Thread Law Green-A20134
Hi, I am trying to use M2 for webapp (plain Servlet+velocity application) development. Is there any suggestion for the directory layout? Also I found the recommended directory layout page on the maven site: src/main/javaApplication/Library sources src/main/resources Applicatio

[m2] clean plugin needs dependant plugins?

2005-12-15 Thread Chad Brandon
Hi, Is there any reason why the clean plugin needs to have dependent plugins downloaded before it can do its thing? It would be nice if it ignored all dependencies (including plugins). Thanks, Chad - To unsubscribe, e-mail

New SAR Plugin

2005-12-15 Thread Frank Mena
I have written a sar plugin that builds a JBoss service sar. It handles the .sar extension automatically because I have given it an artifactId of maven-sar-plugin. I would like to contribute it for inclusion into the mavens plugin directory, if possible. It has the Apache license and a site. Ho

2.0.1 Issues - STATUS

2005-12-15 Thread John Casey
Hi everyone, I wanted to take a second and let you know what we're working on to address the major issues introduced by the 2.0.1 release. First, we're planning an emergency 2.0.2 release to resolve the three or four critical bugs that have surfaced. This release should be ready to go by Mond

Re: Maven 2 in Eclipse

2005-12-15 Thread [EMAIL PROTECTED]
Yep, That's the one. Vincent mentionned it was on codehaus, but on codehaus, there is no reference to it yet. I should have checked the maven site itself :-) (and the lists archive, since it's release was posted) Anyhow, thanks for the quick reply. Eric. Rinku wrote: > Hi Eric, > > Check this

Re: Maven 2 in Eclipse

2005-12-15 Thread Rinku
Hi Eric, Check this out. http://maven.apache.org/eclipse-plugin.html cheers, Rahul * [EMAIL PROTECTED] wrote: Hi, Today at Javapolis (www.javapolis.com), Vincent showed a Maven 2 plugin for Eclipse. It wasn't doing much yet, but there were some nice tricks one could do (such as downloading the

Maven 2 in Eclipse

2005-12-15 Thread [EMAIL PROTECTED]
Hi, Today at Javapolis (www.javapolis.com), Vincent showed a Maven 2 plugin for Eclipse. It wasn't doing much yet, but there were some nice tricks one could do (such as downloading the dependencies etc.) I've googled around, but can only find the Maven 1.0 Eclipse plugins such as Mevenide and Mav

Re: How to override properties defined in ${user.home}/build.properties

2005-12-15 Thread Arnaud HERITIER
No, it's not possible. It's the expected behaviour. Arnaud On 12/15/05, Michael Niemaz <[EMAIL PROTECTED]> wrote: > > Got away by creating an intermediary property. If there is any proper > way, please do not hesitate to communicate. > > --mike > > Michael Niemaz wrote: > > > Looks like to set co

Jelly question: Attaining multiple goals with Maven 1.0.2

2005-12-15 Thread Lou Sacco
In the script below, I run the goal "buildCI." It gets the source and cleans fine, but when it goes to the next line to build I see "Starting reactor..." in the script but then it ends prematurely before completing the build and with no errors and claiming Build Successful. However, if I just do

Re: MavenProject

2005-12-15 Thread David H. DeWolf
To have it injected into your MoJo, use: /** * @parameter expression="${project}" * @required * @readonly */ protected MavenProject project; Jochen Wiedmann wrote: Christopher Cobb wrote: How do I give my plugin access to MavenProject?? org.apache.mav

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Carlos Sanchez
If you have such a big pom, think that you're doing something wrong. You have extension and transitive dependencies, if you use them in the right way your pom won't grow without control On 12/15/05, Arik Kfir <[EMAIL PROTECTED]> wrote: > How about splitting the POM? I mean, it's obvious that the P

Re: [m2] Standard directory layout for generated sources

2005-12-15 Thread Ashley Williams
Hi Mark, I understand your reasoning, but wouldn't it be better to configure such plugins to install into separate packages? For example if I had a project that ran both xjc and webdoclet I would configure them (pseudo code): xjc-plugin.genpackageName = com.acme.xjc webdoclet-plugin-genpack

RE: [m2] Standard directory layout for generated sources

2005-12-15 Thread Donszelmann, Mark
Hi Ashley, as you configure more plugins to run, each of which could generate source files, you may at some point run into two plugins that use the same directory. In that case you need to go and configure at least one of them to avoid the clash. To avoid such clashes in general it would thus be

Re: MavenProject

2005-12-15 Thread Jochen Wiedmann
Christopher Cobb wrote: How do I give my plugin access to MavenProject?? org.apache.maven maven-project 2.0 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

Re: [m2] Standard directory layout for generated sources

2005-12-15 Thread Ashley Williams
Hi John, Any reason why each plugin has to generate its sources into its own plugin-prefix root directory? After all as I add class after class and package after package into the src directory I don't feel the need to start lots of new top level directories. In fact if it wasn't for the fac

Re: MavenProject

2005-12-15 Thread dan tran
if you take a look at the pom file and parent pom, you will see org.apache.maven maven-project 2.0 -D On 12/15/05, Christopher Cobb <[EMAIL PROTECTED]> wrote: > > I see several plugin examples on the Maven site that use > MavenProject. When > I try to use it, however

MavenProject

2005-12-15 Thread Christopher Cobb
I see several plugin examples on the Maven site that use MavenProject. When I try to use it, however, I get the error: package org.apache.maven.project does not exist How do I give my plugin access to MavenProject?? cc - Attention: Any vie

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread ir. ing. Jan Dockx
here, here Directory "pom", next to pom.xml, src and target; all xml files there are merged together; or something; reminds me of our faces-config.xml setup. On 15 Dec 2005, at 21:45, Arik Kfir wrote: How about splitting the POM? I mean, it's obvious that the POM will only grow with time. So a

Re: [m2] [evangelism] [suggestion] New libraries coming out

2005-12-15 Thread Arik Kfir
Yeah, that's what I meant :) On 12/15/05, Christian Schulte <[EMAIL PROTECTED]> wrote: > Alexandre Poitras schrieb: > > > Nah only correcting errors. Lot of POMs are invalid right now. > > Ah ok. So fixing a pom which did not work before... > > -- > Christian > > > --

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Arik Kfir
How about splitting the POM? I mean, it's obvious that the POM will only grow with time. So a logical (though possibly controversial) step would be supporting (but NOT mandating!) a POM split. For example: Or something along these lines (a standardized name for the deps file is good too). Th

Re: How to tell continuum to force checkout

2005-12-15 Thread dan tran
in this case, most likely - user add a file, - continuum does the build - user decide to delete the file and add it back For now you need to manually delete that file. Please file a issue against maven-scm i can add a properties to force -o in starteam update BTW, you will need to con

RE: Is it possible to make pom.xml simpler?

2005-12-15 Thread Frank Russo
I'm new to Maven. TBH, I didn't give it much thought. Considering how big some ant build.xml files get, the pom didn't seem overly exagerated. Could it have been simplified? Sure, but I don't see it as an issue. Having two different formats I think is worse. Just keep in in mind for whenever there

RE: How to tell continuum to force checkout

2005-12-15 Thread Mordo, Aviran (EXP N-NANNATEK)
I'm getting the following message in the build log, and the build fail. Provider message: The starteam command failed. Command output: --- .project: file status is Unknown, will not check out. Use -o option to force chec

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Matt Raible
It would be interesting to see what *potential* users think - as in current Ant users. Asking existing Maven users is a good survey, but it's not a good representation of what the larger Java community thinks IMO. Matt On 12/15/05, dan tran <[EMAIL PROTECTED]> wrote: > +1 to keep. > > Supporting

Re: How to tell continuum to force checkout

2005-12-15 Thread dan tran
what kind of confict? -Dan On 12/15/05, Mordo, Aviran (EXP N-NANNATEK) <[EMAIL PROTECTED]> wrote: > > > > I'm running a continuum on a build server, but I'm getting a message > that the build fail since it could not checkout (Got some conflicts) > from starteam and I need to use force checkout.

Re: [m2] How to add parameters to scm element

2005-12-15 Thread dan tran
What is your usecase? I am currently having no problem with -o during checkout? remember that checkout is one shot deal, after that you should use scm:update -D On 12/15/05, Mordo, Aviran (EXP N-NANNATEK) <[EMAIL PROTECTED]> wrote: > > Is there a way I can add parameters to the scm element. I w

How to tell continuum to force checkout

2005-12-15 Thread Mordo, Aviran (EXP N-NANNATEK)
I'm running a continuum on a build server, but I'm getting a message that the build fail since it could not checkout (Got some conflicts) from starteam and I need to use force checkout. Is there a way I can add parameters to the scm element. I want to be able to tell Starteam to use -o option t

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread dan tran
+1 to keep. Supporting both will be maintainant nightmare, drop the current one is impossible. I am happy to see one format since I am able to focus to creating the content rather then worrying about syntaxfor each element. The current syntax is good. -Dan On 12/15/05, Brett Porter <[EMAIL P

[m2] How to add parameters to scm element

2005-12-15 Thread Mordo, Aviran (EXP N-NANNATEK)
Is there a way I can add parameters to the scm element. I want to be able to tell Starteam to use -o option to force checkout. How can I do that ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Srepfler Srgjan
Brett Porter wrote: Let's not start another attributes vs elements holy war :) I have no problem with either, but the reasons I see not to change: - we would have to support both. This may lead to confusion. - currently it is very consistent - there are no attributes, lists are always visible a

[m2] DBUnit plugin form m2?

2005-12-15 Thread Srepfler Srgjan
Hi, Does anyone know if there is a m2 plugin for DBUnit and if not, can someone post an example pom that uses it via ant? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Brett Porter
Let's not start another attributes vs elements holy war :) I have no problem with either, but the reasons I see not to change: - we would have to support both. This may lead to confusion. - currently it is very consistent - there are no attributes, lists are always visible as lists, etc. The synt

Re: How to override properties defined in ${user.home}/build.properties

2005-12-15 Thread Michael Niemaz
Got away by creating an intermediary property. If there is any proper way, please do not hesitate to communicate. --mike Michael Niemaz wrote: Looks like to set core tag does not override properties defined in ${user.home}/build.properties ;-( Any workaround? --mike Michael Niemaz wrote:

[m2] maven-ear-plugin: why is the includeInApplicationXml set to false by default ?

2005-12-15 Thread Dário Luís Coneglian Oliveros
Hi there, I´ve been looking at the maven-ear-plugin and noticed the 'includeInApplicationXml' instance variable of JavaModule class is set to false by default. However, when using this plugin the jar artifacts are never placed as entries in the application.xml unless you specify them in the con

Re: How to override properties defined in ${user.home}/build.properties

2005-12-15 Thread Michael Niemaz
Looks like to set core tag does not override properties defined in ${user.home}/build.properties ;-( Any workaround? --mike Michael Niemaz wrote: Is that possible at all in my maven.xml? --mike - To unsubscribe, e-mail: [EM

How to override properties defined in ${user.home}/build.properties

2005-12-15 Thread Michael Niemaz
Is that possible at all in my maven.xml? --mike - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Perforce testing needed

2005-12-15 Thread Neil Padgen
> From: Mike Perham [mailto:[EMAIL PROTECTED] > > Neil, your SCM URL should NOT end with "/...". I add that internally. OK, when I remove "/..." from my SCM URL, Continuum happily builds the project. (Hooray!) However, removing "/..." causes the changelog-report-plugin, the developer-activity

RE: {m2] plugin execution order

2005-12-15 Thread David Jackman
Plugins that are executed with any given phase can come from three places: they can be associated with the phase by the definition of the packaging type for your project, they can come from the parent pom, and they can be given in your pom. According to the docs, the plugins from the packaging ar

Re: Perforce testing needed

2005-12-15 Thread Emmanuel Venisse
Mike, '/' at the end must be allowed because if you use modules and you have '/' at the end, maven will append scm url and module name if you don't specify it in module Emmanuel Mike Perham a écrit : Neil, your SCM URL should NOT end with "/...". I add that internally. -Original Messag

RE: [m2] can't read url exception

2005-12-15 Thread John Allen
I've also had this but intermittently, usually occurred when I'm behind a hideously slow NTLM proxy but not always. -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: 15 December 2005 02:01 To: Maven Users List Subject: Re: [m2] can't read url exception Which proje

RE: [m2] Links from parent site to module site

2005-12-15 Thread John Allen
Re your layout, that's not a problem. If you are using the correct version of the plugin (i.e. the patches have been applied) then specify ${modules} in your site.xml:- ${project.name} images/company-logo.png ${project.url} ${parentProject} ${modu

RE: Assembly plugin triggers execution of all previous phases

2005-12-15 Thread John Allen
As I stated before it is different because the developers believe assembly is not something that should be performed as part of a normal build lifecycle. The argument regarding what defines the scope of a lifecycle is moot. Re assembly being part of package phase: http://maven.apache.org/guides/

RE: {m2] plugin execution order

2005-12-15 Thread Patrick O'shea
Hi, it just means that i can configure a plugin to a phase in the pom.xml, like the following:   org.apache.maven.plugins   maven-site-plugin                            deploy-site            install                          deploy                                       The problem I have

Re: Multiple JDKs ?

2005-12-15 Thread Emmanuel Venisse
Not yet, it wil be supported in 1.1. http://jira.codehaus.org/browse/CONTINUUM-44 Emmanuel Christian Schulte a écrit : Hi, is it possible to make continuum build with different JDKs ? I imported multiple maven 2 projects and need some of them to be build with an IBM JDK and the others with

RE: Perforce testing needed

2005-12-15 Thread Mike Perham
Neil, your SCM URL should NOT end with "/...". I add that internally. -Original Message- From: Neil Padgen [mailto:[EMAIL PROTECTED] Sent: Thursday, December 15, 2005 11:08 AM To: continuum-users@maven.apache.org Subject: RE: Perforce testing needed > -Original Message- > Fro

RE: {m2] plugin execution order

2005-12-15 Thread Christopher Cobb
I just read this: "you can use the executions element to gain more control over the order of particular goals" http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.ht ml (Plugins section) Of course, I have no clue what that actually means. -Original Message- From:

[m2] javadoc report plugin not working with site goal

2005-12-15 Thread Mordo, Aviran (EXP N-NANNATEK)
I have the maven-javadoc-plugin on my reports section. The problem is when I run the site:site goal the index.html only contains the site's menu and not the javadoc content. The rest of the files generated are fine, but navigating from the project's site you can not see the javadocs, unless you edi

RE: Perforce testing needed

2005-12-15 Thread Neil Padgen
> -Original Message- > From: Mike Perham [mailto:[EMAIL PROTECTED] > Sent: 15 December 2005 16:55 > To: continuum-users@maven.apache.org > Subject: Perforce testing needed > > All, I now have a version of the Perforce provider which > works on Continuum 1.0.2 in my own basic testing.

[m2] Cargo

2005-12-15 Thread Samuel Le Berrigaud
I am using the maven 2 Cargo plugin. It's just great to deploy to my tomcat5x. However today I had some problem running cargo on a new machine. Maven cannot find the cargo plugin. It seems that the cargo snapshot repository is empty (or almost). Does someone knows what is going on ? Thanks, SaM

RE: [m2.0.1] ambiguous subtask definition

2005-12-15 Thread Dário Luís Coneglian Oliveros
Thanks for the information. After sending the email, I realized the problem was happening to 2.0 as well. So please ignore that comment :-) Regards, Dário -Original Message- From: Peschier J. (Jeroen) [mailto:[EMAIL PROTECTED] Sent: quinta-feira, 15 de dezembro de 2005 14:16 To: Maven U

Perforce testing needed

2005-12-15 Thread Mike Perham
All, I now have a version of the Perforce provider which works on Continuum 1.0.2 in my own basic testing. I would like to have a few hardy volunteers to download the patched jar and try it on their own build by placing it in apps/continuum/lib and restarting Continuum. I'd advise you to backup t

{m2] plugin execution order

2005-12-15 Thread Patrick O'shea
Hi, If i have multiple plugins running in the same phase, How do i control the order that they are run ? thanks in advance Patrick O'Shea

SureFire pertest setting not working correctly?

2005-12-15 Thread John O. Hampton, Jr.
Hi, I'm trying to use the surefire plugin version 2.1.1. When I set forkMode to pertest, all of my test fail. It looks like the setUp method in my JUnit test is not being called before the method is executed. Am I doing something wrong? Thanks! John --

Multiple JDKs ?

2005-12-15 Thread Christian Schulte
Hi, is it possible to make continuum build with different JDKs ? I imported multiple maven 2 projects and need some of them to be build with an IBM JDK and the others with Sun. Is it supported ? -- Christian

RE: [m2.0.1] ambiguous subtask definition

2005-12-15 Thread Peschier J. (Jeroen)
It's a XDoclet bug, not Maven's, see http://opensource2.atlassian.com/projects/xdoclet/browse/XDT-1435 http://opensource2.atlassian.com/projects/xdoclet/browse/XDT-86 I am curious though, how it would work on 2.0 and not on 2.0.1? I find the same behaviour for 2.0 and 2.0.1 on this issue

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Cservenak Tamas
A very big +1 here! ~t~ Milos Kleint wrote: > maybe there's just need for tools to help creating the pom content? > > Milos > > Chris Berry wrote: >> Hi Matt! >> A big +1 from me. I've been discussing this w/ John, Jason, et al. A >> push >> towards simplifying/shortening the XML would be a big h

RE: Is it possible to make pom.xml simpler?

2005-12-15 Thread Jörg Schaible
Chris Berry wrote on Thursday, December 15, 2005 4:35 PM: > Agreed. When one has to lean on tools to build a build > script, IMO this > illuminates a issue. > > Do not discount the value of readability. When we go from 5-6 > lines/dependency to 1 -- then all of a sudden we can see all of the > de

[m2]Setting parameters in m2

2005-12-15 Thread Sri Sankaran
Can you help me understand the right way to set mojo parameters? I am an m2 neophyte trying to unlearn 2 years of Maven usage. What I wanted was the compiler:compile mojo to output classes to a "build" directory instead of the default "target". However I was unable to set the buildDirectory p

Re: [M2.0.1] Ant tasks can't parse pom.xml

2005-12-15 Thread Matt Raible
I've tried this on several machines and it seems that the JAR for 2.0.1 Ant Tasks simply doesn't work. Does anyone have this working? Again, everything works fine using the 2.0 JAR. Matt On 12/13/05, Matt Raible <[EMAIL PROTECTED]> wrote: > I tried upgrading my Maven 2 Ant Tasks' JAR tonight, a

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Chris Berry
Agreed. When one has to lean on tools to build a build script, IMO this illuminates a issue. Do not discount the value of readability. When we go from 5-6 lines/dependency to 1 -- then all of a sudden we can see all of the dependencies on a single page -- take Matt's case; from ~140 lines to ~40 -

RE: [m2] restricting javadoc

2005-12-15 Thread David Jackman
The javadoc plugin has a property for excluding packages, but it doesn't work (see http://jira.codehaus.org/browse/MNG-1768). The patch I attached to that jira issue fixes the problem by removing the source files for the excluded packages from the list given to the javadoc tool, which might addres

Re: Maven Plug-in for Eclipse

2005-12-15 Thread Patrick Kimber
I have subscribed within the last hour using the address: [EMAIL PROTECTED] I had no errors On 15/12/05, David Jackman <[EMAIL PROTECTED]> wrote: > Well, the user-subscribe email worked, but the subscription confirmation > fails (returned as undeliverable). Is anyone else seeing this problem? >

Re: FW: Continuum 1.0.2

2005-12-15 Thread Emmanuel Venisse
I'd guess you copied application.xml from 1.0, i have release continuum 1.0.1 and 1.0.2 with READ_UNCOMMITTED. I think it will be good to use application.xml distributed with continuum 1.0.2 Emmanuel Michael Fiedler a écrit : Actually, no. I will change it to 'READ_UNCOMMITTED' in both place

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Matt Raible
On 12/15/05, Milos Kleint <[EMAIL PROTECTED]> wrote: > maybe there's just need for tools to help creating the pom content? Tools will solve the problem is never a good solution IMO. Many folks prefer to use simple text editors and they're unlikely to fire up Eclipse just to edit their pom.xml. M

[m2] restricting javadoc

2005-12-15 Thread Benedict Heal
Is it possible to get a javadoc report of just some of the source files? Currently, because of jar issues, my source tree contains stuff that won't compile. I can restrict the compiler and surefire to omit parts of the source tree, but cannot see how to restrict javadoc. At present, I get

RE: Maven Plug-in for Eclipse

2005-12-15 Thread David Jackman
Well, the user-subscribe email worked, but the subscription confirmation fails (returned as undeliverable). Is anyone else seeing this problem? -Original Message- From: David Jackman [mailto:[EMAIL PROTECTED] Sent: Thursday, December 15, 2005 8:05 AM To: Maven Users List Subject: RE: M

RE: Maven Plug-in for Eclipse

2005-12-15 Thread David Jackman
Correction: I did get a bounce back from users-subscribe (it went to my junk mail folder unnoticed--must have included information about male enhancement to compensate for the rejection notice). I re-sent to user-subscribe (without the 's') and it worked. Please fix the link (again). ..David..

Re: Maven Plug-in for Eclipse

2005-12-15 Thread Emmanuel Venisse
[EMAIL PROTECTED] Emmanuel David Jackman a écrit : According to the page right now, the link is to users-subscribe (with an 's'), not user-subscribe as you say. Which is correct? I followed the users-subscribe link and didn't get anything back (neither a bounce back nor a "welcome to the lis

Re: Maven Plug-in for Eclipse

2005-12-15 Thread Miks Rozenbergs
Hi. This is the qmail-send program at codehaus.org. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. <[EMAIL PROTECTED]>: Sorry, no mailbox here by that name. (#5.1.1) --- Below this line is a copy of

RE: Maven Plug-in for Eclipse

2005-12-15 Thread David Jackman
According to the page right now, the link is to users-subscribe (with an 's'), not user-subscribe as you say. Which is correct? I followed the users-subscribe link and didn't get anything back (neither a bounce back nor a "welcome to the list"). ..David.. -Original Message- From: Jason

Re: Is it possible to make pom.xml simpler?

2005-12-15 Thread Milos Kleint
maybe there's just need for tools to help creating the pom content? Milos Chris Berry wrote: Hi Matt! A big +1 from me. I've been discussing this w/ John, Jason, et al. A push towards simplifying/shortening the XML would be a big help. Cheers, -- Chris On 12/15/05, John Casey <[EMAIL PROTECTED

  1   2   >