Re: Is it possible to build 2 jars in a single project?

2006-02-03 Thread Dave Maung
use maven-compiler-plugin. see http://maven.apache.org/guides/mini/guide-using-one-source-directory.html On 2/3/06, Brad O'Hearne <[EMAIL PROTECTED]> wrote: > > I have a single project which I would like the build to result in 2 jars > (actually one jar and one sar). Is it possible to have a proje

Re: [m2eclipse] Eclipse WebTools and Maven2 "Publishing Failed"

2006-02-03 Thread John Fallows
Thanks Lee, I'm trying this from home, so no proxy at the moment, although settings.xmlintegration will become more important later. :-) I tried your suggestion, but it did not seem to help. Just in case Eclipse or the Maven2 Eclipse plugin was being too smart and converting the "short-name" pat

Re: [M2] site.xml schema

2006-02-03 Thread Brett Porter
It will be available in the final version of the site plugin (2.0). - Brett On 2/2/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: > AFAIK not yet > > Cheers, > > Vincent > > 2006/2/1, Thomas Van de Velde <[EMAIL PROTECTED]>: > > Hi, > > > > I am having an error in the generation of my site. > > >

Re: [m2] Possible bug?

2006-02-03 Thread Brett Porter
sounds like a bug. Please file it under the MRESOURCES section in JIRA. - Brett On 2/3/06, Rubén Barroso <[EMAIL PROTECTED]> wrote: > I forgot to mention that @ char is in a comment. > > 2006/2/2, Rubén Barroso <[EMAIL PROTECTED]>: > > > > Hi all! > > > > I've got a resource (a Spring XML context

Re: [m2] ignore known hosts

2006-02-03 Thread Brett Porter
It's not currently configurable to ignore unknown hosts (-B can be used to avoid the question, but the build will just fail instead). The known hosts file is read from ${user.home}/.ssh/known_hosts On 2/4/06, Luca Gmail <[EMAIL PROTECTED]> wrote: > In ither words: > where wagon-ssh look for known

Re: [m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread Brett Porter
No, the skin tag in your site descriptor will be ignored if you use the older site plugin. - Brett On 2/4/06, Arik Kfir <[EMAIL PROTECTED]> wrote: > I think it will, because the skins (which are a standalone project on their > own) were not released yet, and therefor are not present on the ibibli

Re: [m202] Cobertura plugin

2006-02-03 Thread Brett Porter
It's the first one in the section on the link you gave. Unless I'm clearly mistaken :) The cobertura plugin will be worked on to completion in the next two weeks. We're working through the issues at the mojo project. - Brett On 2/4/06, David Sag <[EMAIL PROTECTED]> wrote: > > > As far as I can

Re: I can't get cobertura to work with maven 2.0.2

2006-02-03 Thread Brett Porter
On 2/1/06, David Sag <[EMAIL PROTECTED]> wrote: > yes that's exactly what is happening. the second (redundent) > instrumentation generates 0 length classes. > I am not sure what AIOOBE means. I wonder if this is related to Mike Perham's recent comments about the changes. AIOOBE was ArrayIndexOutO

surefire-report:report runs all the unit tests?

2006-02-03 Thread brian . a . yoffe
I am using clover and I want to generate both clover and surefire reports. When I execute mvn site with the following in my pom I see that all unit tests are executed twice. Is there a way to prevent this from happening? Am I using the plugins as intended? Further, when I execute mvn sure

Is it possible to build 2 jars in a single project?

2006-02-03 Thread Brad O'Hearne
I have a single project which I would like the build to result in 2 jars (actually one jar and one sar). Is it possible to have a project build two jars? Or do I have to break this project into two projects? The reason that I ask is that these two jars essentially come from the same codebase -

M2 release plugin using CVS with sourceforge

2006-02-03 Thread Paul Rule
Has anyone been using the Maven2 release plugin with CVS & sourceforge? I'm having a hard time trying to get it going - it may not be a maven problem but an SSH or some other set up problem. It gets as far as trying to check in pom.xml after it's updated the version - then it freezes which I thin

dependency war not working

2006-02-03 Thread Jason Chaffee
If I try to add a dependency of type war to my pom, I get the following error: [ERROR] FATAL ERROR [INFO] - --- [INFO] Error building POM (may not be this project's POM). Project ID: com.tvworks.tva.packager:packager-web

Re: [m2] How to specify the context.xml for a generated war

2006-02-03 Thread Milos Kleint
no idea then.. maybe use cargo.codehaus.org for deployment? Milos On 2/3/06, Kris Nuttycombe <[EMAIL PROTECTED]> wrote: > Right, but I need to swap out the context.xml file at packaging time > because (a) it has database configuration stuff that shouldn't go into > the source repository and (b) t

Re: [m2] How to specify the context.xml for a generated war

2006-02-03 Thread Kris Nuttycombe
Right, but I need to swap out the context.xml file at packaging time because (a) it has database configuration stuff that shouldn't go into the source repository and (b) this configuration is different depending upon what host I'm building the war for. Thanks, Kris Milos Kleint wrote: > src/main

Re: [m2] How to specify the context.xml for a generated war

2006-02-03 Thread Milos Kleint
src/main/webapp/META-INF ? at least tha't where I let the netbeans support to generate it and it's then able to deploy somehow.. Milos On 2/3/06, Kris Nuttycombe <[EMAIL PROTECTED]> wrote: > Hi, all, > > I've been trying to convert a Maven 1.0 webapp project to use Maven 2.0, > and I've been hav

[m2] How to specify the context.xml for a generated war

2006-02-03 Thread Kris Nuttycombe
Hi, all, I've been trying to convert a Maven 1.0 webapp project to use Maven 2.0, and I've been having trouble figuring out how to specify a context.xml file to be included in the META-INF directory of the generated war. It's easy enough to do it with the web.xml, but if I try specifying the conte

Re: Maven 1.1b Junit tests - Threads close down

2006-02-03 Thread Arnaud HERITIER
No idea. You wait for the others threads ? If you are using m1.1 beta, did you try maven.junit.fork=once ? Anyone else ? Arnaud On 2/1/06, Ashley Hurkoo <[EMAIL PROTECTED]> wrote: > Hi, I have a Junit test class, mytest and I am executing maven test. In > mytest, I am executing multiple threads,

What scope is like 'provided' and 'test' together?

2006-02-03 Thread Lee Meador
I have a jar (webservices.jar) that I need for these things: 1) Compile main source. 2) Run tests in projects that are dependant on this one. But not for running the main source since that will run in the ejb container. provided doesn't work because the jar isn't available for the tests in the d

Re: maven 1.1 and inherited properties

2006-02-03 Thread Arnaud HERITIER
Thanks Nicolas I'll test it ASAP Arnaud On 2/1/06, Nicolas De Loof <[EMAIL PROTECTED]> wrote: > > Copy paste error : please read [http://jira.codehaus.org/browse/MAVEN-1741] > > Nicolas De Loof a écrit : > > > I was first thinking about "org.apache.commons.attributes.enable" not > > beeing correct

Re: Error in detecting changes

2006-02-03 Thread Emmanuel Venisse
Strange. I wanted log of continuum. Probably a bug. File an issue, I'll at it. Emmanuel Punkin Head a écrit : The pom.xml is version 1.34. [INFO] Scanning for projects... [INFO] [INFO] Building WRAT Parent [INFO]

Re: [m202] eclipse plugin not running install correctly on multiproject?

2006-02-03 Thread Thomas_Perry
Thanks for the response. I have filed an issue on jira, http://jira.codehaus.org/browse/MNGECLIPSE-71 Mark Hewett <[EMAIL PROTECTED]

Re: [m202] eclipse plugin not running install correctly on multiproject?

2006-02-03 Thread Mark Hewett
On 2/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I searched google and jira and found no hits. Has anyone else seen this > behavior? This has come up on the [EMAIL PROTECTED] list. Probably worth creating a Jira entry for it, although I'm not sure if this is caused by the m2eclipse plug

Adding Source path for test-compile

2006-02-03 Thread Paige, Gary
Currently I have a step that generates new sources during the generate-test-sources I need to add that directory to the source path during test-compile - I have tried several ways : org.apache.maven.plugins maven-compiler-plugin

Re: How to make multi module work in continuum

2006-02-03 Thread raghurajan . x . gurunathan
Can you please give me more details on your comment "You must add a build definition. With shell project, we can't add a default build definition" Is there any example(step-step) somewhere it shows how to add M2project as shell project?? Thanks, Raghurajan G Emmanuel Venisse <[EMAIL

Re: [m2] processing more than one module without binding the subs to a parent pom!

2006-02-03 Thread Lee Meador
just make a parent POM that has pom and add entries to tthe element defining as children POMs the things you want to build. They don't have to be related in any way but if they are, they will be built in the right order. (For example, a jar that is used in two real applications.) If you don't eve

Re: How to install sources

2006-02-03 Thread Lee Meador
There is no information on how to use the maven-source-plugin at the link given. It just shows the name and the config properties. There is no mention of the word "performRelease" at the POM document whose link is given. Does someone know of a place that documents these things? On 2/2/06, Paolo

[m2] processing more than one module without binding the subs to a parent pom!

2006-02-03 Thread Fredy
Hi all, I have asked the same question in Thread "[m2] parent pom", but nobody has answered, so usually it was going under ;-) I cannot belive, that I am the only one who's missing something like that! The multi Project mechanismus is ok for real submodules, that never used in another context.

Re: [m2eclipse] Eclipse WebTools and Maven2 "Publishing Failed"

2006-02-03 Thread Lee Meador
There was a bug that showed up when you had spaces in the repository location you told the maven2 eclipse plugin. You should try using the short name for "documents and settings" that you can get doing a "dir /x" in a dos box. The short name, on my machine, is DOCUME~1 for that folder. It lets you

Re: Behavior with multiple goals

2006-02-03 Thread Emmanuel Venisse
Alex Boisvert a écrit : Yes, I understand the "package" goal is a superset of the "compile"; I mostly wanted to understand why I didn't see it happening. Thanks for your clarification. Are you saying that if the build definitions were set on different schedules the behavior would be differe

Re: How to make multi module work in continuum

2006-02-03 Thread Emmanuel Venisse
[EMAIL PROTECTED] a écrit : Again Thanks for your reply, If i remove the -N option i think i read somewhere its gonna do build all modules 2 times? is that right yes, but only on modules that have changes. in case of shell project where do i give my pom url ? coz all its asking for p

RE: Releasing: a nightmare

2006-02-03 Thread Mike Perham
SCP now works for me with the 2.0.2 release so we continue to us that. webify mperham c:\documents and settings\mperham.WEBIFY\.ssh\id_rsa webify Webify Maven2 Repo scp://wsfteam01.webify.local/var/www/html/mav

RE: Releasing: a nightmare

2006-02-03 Thread Shukla, Sanjay
Mike, Could you share your settings.xml and sftp url inorder to make the site sftp work. Thanks. Sanjay Shukla, HPI Product Engineering, 2 Penn Plaza, NY. 212 904 3629 Office 732 692 4419 Cell -Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Wednesday, Janua

commons-attributes plugin

2006-02-03 Thread brian . a . yoffe
I'm looking for a commons-attributes plugin.Seems like several have existed, but are no longer valid/available. Can anyone point me to the right one? Thanks, Brian Yoffe This communication is for informational purposes only. It is not intended as an offer or solicitation for the purchase

RE: Best practice for choosing a groupId?

2006-02-03 Thread Mike Perham
The old naming practices are used for compatability with existing POMs. I think your suggestion is an excellent one if we were to import the commons jars now. For instance, new versions of spring and hibernate are going in "org.springframework" and "org.hibernate" respectively. If your module is

Best practice for choosing a groupId?

2006-02-03 Thread KC Baltz
Are there any guidelines for choosing a groupId for a project? It seems like there are several techniques on ibiblio and I think some of it has historical motivation. For example, the Jakarta Commons projects all seem to use a groupId that matches artifactId. So you end up with commons-uti

[m202] eclipse plugin not running install correctly on multiproject?

2006-02-03 Thread Thomas_Perry
hello to all, I'm running eclipse 3.1.1, maven 2.0.2 and the eclipse maven2 plugin 0.0.4 the plugin from Mergere Inc. when I run the install goal against an eclipse multiproject, the only action that happens is the pom of the parent project is installed to my local repo. none of the subproj

How to include ant-based project

2006-02-03 Thread Dixit, Sandeep (ProSource Solutions)
I have a project for webSphere admin tasks. Is there a way I can include it as a plugin rather than as a parent in my ear project's pom? Thanks, Sandeep --- ***National City made the following annotations

RE: [m2] ignore known hosts

2006-02-03 Thread Luca Gmail
In ither words: where wagon-ssh look for known_hosts file? tnx -Original Message- From: Rasconi Luca (u.e.) [mailto:[EMAIL PROTECTED] Sent: venerdì 3 febbraio 2006 14.38 To: Maven Users List Subject: [m2] ignore known hosts During the artifacts deploy I use scp to copy it to my reposito

Re: Launch an application from the commandline

2006-02-03 Thread Wendy Smoak
On 2/3/06, Darryl L. Pierce <[EMAIL PROTECTED]> wrote: > True. However, even with the 's' in place it's still not working because > Maven doesn't know about that plugin. What's the dependency snippet I need > to install it? Found it, I think: http://snapshots.maven.codehaus.org/maven2/org/codehau

Re: Using cobertura with Maven 2

2006-02-03 Thread David Sag
The only solution i know right now is not to include cobertura repoorts and hope whoever is working on the plugin fixes whatever it is they did to break it between maven 2.0 and 2.0.2 I had a big presentation on maven today and was luckily able to skirt around the cobertura issue with some quick

Re: Using cobertura with Maven 2

2006-02-03 Thread Rik Bosman
David, I do run into (the same you had I think ) net.sourceforge.cobertura.instrument.Main - Unable to instrument file. Do you know a solution? I'm using mvn 2.02. regards, Rik 2006/2/3, David Sag <[EMAIL PROTECTED]>: > > > Hi Rik, > > So you have actually been able to get the 2.0-SNAPSHOT to

Re: Behavior with multiple goals

2006-02-03 Thread Emmanuel Venisse
I don't understand why you set 2 build definitions for the same schedule. It will be more logic to delete the second (compile) because it's included in package phase. As you have 2 build definitions on the same schedule, continuum run them separatly. In your case it run compile definition first

Behavior with multiple goals

2006-02-03 Thread Alex Boisvert
Hi, I'm using continuum 1.0.2 and I've defined two goals for a Maven2 project: Build Definitions Goals Arguments POM FileProfile ScheduleFrom package --batch-modepom.xml DEFAULT DEFAULT_SCHEDULEProject Edit

Re: Error in detecting changes

2006-02-03 Thread Emmanuel Venisse
Is it your pom.xml that have this version? Can you send log traces of a build execution on this project. Emmanuel Punkin Head a écrit : The version in CVS is 1.34 (with an update by another individual) but, the Continuum build number is 25. On CVS 1.25 I was the one who commited the changes a

Re: Launch an application from the commandline

2006-02-03 Thread Darryl L. Pierce
Wendy Smoak wrote: > On 2/3/06, Darryl L. Pierce <[EMAIL PROTECTED]> wrote: >> jerome lacoste wrote: > >> How do I set the dependency in my pom.xml file? I don't see an example of >> that anywhere and when I incorporate your example, Maven complains that >> it can't find it. >> >> [INFO] Scanning

Re: Launch an application from the commandline

2006-02-03 Thread Wendy Smoak
On 2/3/06, Darryl L. Pierce <[EMAIL PROTECTED]> wrote: > jerome lacoste wrote: > How do I set the dependency in my pom.xml file? I don't see an example of > that anywhere and when I incorporate your example, Maven complains that it > can't find it. > > [INFO] Scanning for projects... > [INFO] arti

Re: Launch an application from the commandline

2006-02-03 Thread Darryl L. Pierce
jerome lacoste wrote: > On 2/2/06, Darryl L. Pierce <[EMAIL PROTECTED]> wrote: >> I would like to be able to run an application from the commandline using >> Maven. The ideal thing would be for Maven to create the command line, >> especially the classpath, given that it knows my dependencies. Is s

Re: How to install sources

2006-02-03 Thread Darryl L. Pierce
Erick Dovale wrote: > Hi there, > can any one tell how can I install the sources jar of the artifacts in > the local repository?? Do you mean the source files for your dependencies or the source files for what you're producing? -- Darryl L. Pierce <[EMAIL PROTECTED]> Homepage: http://mcpierce.m

Re: [m202] Cobertura plugin

2006-02-03 Thread John Allen
I've also given up on cobertura for now due to problems trying to get it to work as part of my 'standards confirmance' build that uses cobertura:check and the site build (fails in site build complaining of trying to write to a read only testClasspath or alike). Clover works fine in this regard (

Re: [m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread Arik Kfir
I think it will, because the skins (which are a standalone project on their own) were not released yet, and therefor are not present on the ibiblio repository. On 2/3/06, David Sag <[EMAIL PROTECTED]> wrote: > > > Hi Arik > > your suggestion, in combination with emanuelle's suggestion fixed the >

Re: Integrating Junit Testreport into the maven site

2006-02-03 Thread Jurgen De Landsheer
Pleines, Karsten (I B 3) wrote: Hi, I've started to generate a maven site and it succeeds. The problem is, I don't know how to integrate the Junit report into the site. Can somebody help me? Thank you Karsten - To unsubscr

Re: Continuum & Maven 2 not using settings.xml

2006-02-03 Thread Christian Mouttet
Hi Brian, thank's. I've already tried this. The paths for global settings.xml and user settings.xml are plotted into the log file. But neither global nor user settings are used. I'm quite confused. Am Donnerstag, 2. Februar 2006 23:52 schrieb Brian E. Fox: > Copy your settings.xml to \bin\linux

RE: [m2] parent pom

2006-02-03 Thread Frank Russo
I guess I don't have a choice, but the issue is that there are other requirements to share smaller parts of the api to other projects. For instance, there are some projects that need a jar of a specific package from my project. For me to make that a separate module, I'd have to separate that pac

could not able to include application.xml

2006-02-03 Thread Saravanakumar . B
Hi , I'm using maven1.x ,Getting the following exception while generating a EAR , Warning: selected ear files include a META-INF/application.xml which will be ignored (please use appxml attribute to ear task) Can somebody help me? Regards Saravana

Integrating Junit Testreport into the maven site

2006-02-03 Thread Pleines, Karsten \(I B 3\)
Hi, I've started to generate a maven site and it succeeds. The problem is, I don't know how to integrate the Junit report into the site. Can somebody help me? Thank you Karsten - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: [m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread David Sag
Hi Arik your suggestion, in combination with emanuelle's suggestion fixed the problem (for today at least). I only enabled snapshots as part of a general attempt to get cobertura working.  since that is pretty mucha lost cause for now, tell me, if i disable snapshots, will the presence of the t

[m2] ignore known hosts

2006-02-03 Thread Rasconi Luca \(u.e.\)
During the artifacts deploy I use scp to copy it to my repository. Is there a way to skip the authenticity of the repository's host? Tnx, Luca This is the ant task I use:

Re: [m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread Arik Kfir
Hi David, You should remember that although Maven itself was released, some of the plugins (e.g. the site plugin) have not been released yet. You are currently using either a SNAPSHOT, or one of the BETA releases - all of which are subject to change as they are still being written and implemented.

Re: [m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread Emmanuel Venisse
You use the snapshot version of site plugin, right? Add this in your pom : false apache.snapshots Apache Development Repository http://cvs.apache.org/maven-snapshot-repository Emmanuel David Sag a écrit : Today I got a new error when bui

Re: [m2] parent pom

2006-02-03 Thread Emmanuel Venisse
Why do you not create 3 projects like this : root - pom.xml - jar_project -pom.xml - war_project -pom.xml In your war project, you add a dependency to your jar. Your other internal projects will use the project_jar as dependency. Emmanuel Frank Russo a écrit : Does anyone know

RE : [m2] parent pom

2006-02-03 Thread Olivier Lamy
If api is one api to share try this : project-root pom.xml module-api pom.xml module-webapp pom.xml root pom declares the two modules. Sub modules declares parent. pom.xml in webapp has a dependency to the api. With this you can easily share the api. - Olivier -Message d'origine

[m2.0.2] the skin does not exist: unable to determine the release version.

2006-02-03 Thread David Sag
Today I got a new error when building the site for my project. the skin does not exist: unable to determine the release version. WTF?  I've never seen this error before. Is it just me, or does the new found brittle nature of builds scare anyone else?  It's truly scary to go home leaving a proje

RE: [M2] Need help on configuring maven.username ?

2006-02-03 Thread fabrice . belingard
Well, I don't know... Maybe Maven devs can tell you a bit more about that. And if you don't want to add "-Dmaven.username=MyName" each time you launch Maven, you still have a workaround: you can add it manually in your mvn.bat/mvn file. But of course, if you do that, the user name will be fixed

Re: Using cobertura with Maven 2

2006-02-03 Thread David Sag
Hi Rik, So you have actually been able to get the 2.0-SNAPSHOT to work?  I'd love to see how. I have been trying all week to get the cobertura reports to work but since iupping to maven 2.0.2 have not been successful due to the problem of it generating 0 byte instrumented class files during the r

Re: Using cobertura with Maven 2

2006-02-03 Thread David Sag
you will need to enable snapshots to get the cobertura plugin as it has not actually ever been released. then try                                org.codehaus.mojo                cobertura-maven-plugin                 2.0-SNAPSHOT                                                       proces

RE: [m2] parent pom

2006-02-03 Thread Frank Russo
Does anyone know if this is possible? Just checking in case it was missed... Frank Russo Senior Developer FX Alliance, LLC -Original Message- From: Frank Russo Sent: Tuesday, January 31, 2006 12:05 PM To: Maven Users List Subject: RE: [m2] parent pom Does anyone know if the following i

Re: [m202] Cobertura plugin

2006-02-03 Thread David Sag
As far as I can tell the latest snapshot version (2.0) still does not work properly.  it will instrument okay but when generating the a site with cobertura as a report it generates 0 byte class files and the surefire tests break. brett porter claims it does work and offered up https://svn.apache.

Re: [M2] release plugin using CVS with sourceforge

2006-02-03 Thread Emmanuel Venisse
Do you use public/private keys for your connection to sourceforge cvs? If you have a passphrase, you must start a ssh agent so password won't be necessary. But i'm not sure it's the pb because you don't have a message in log. Emmanuel Paul Rule a écrit : Hi, Has anyone been using the Maven2 r

RE : site.xml descriptor

2006-02-03 Thread Olivier Lamy
Hi, I think this will be possible with skins with creating my own velocity template : site.vm. I have tested with maven-site-plugin svn trunk or snapshots from codehaus repository and it works fine. Look at : http://docs.codehaus.org/display/MAVEN/Sites+and+Inheritence - Olivier -Message d'or

Specifying a New Packaging / Creating a Custom Artifact Handler

2006-02-03 Thread Olivier Lamy
Hi all, I need to Specifying a New Packaging (I have read the section called Specifying a New Packaging [1]). This part is ok. But I have a trouble with the section called Creating a Custom Artifact Handler. I use this : true But when I try javadoc:javadoc on an module with this new packaging. Mvn

Re: site.xml descriptor

2006-02-03 Thread Guilherme Silveira
Hmm... your logo is at the right side this is easy... bannerRight just like bannerLeft... I want to add a new banner after the 'Powered by Maven' (At the top there is already the project and group logos) Thanks anyway Guilherme 2006/2/3, Scokart Gilles <[EMAIL PROTECTED]>: > Here i

Re: Multiple project and Site plugin

2006-02-03 Thread Arik Kfir
Hi, In your site.xml file, add a "${modules}" element. This will generate a list with all submodules in the project. If you don't have a site.xml, create one at "src/site" of the parent project. Here's an example: ... ... http://www.apache.org/"/> http

currently don't allows an url

2006-02-03 Thread Mark Struberg
As seen recently, the usage of the tag in settings.xml is not used consistently. Some plugins do use it, others don't. And many devs don't even know it exists or may be used for other things than scm. So i have a few questions and thoughts on how to handle it in the future: 1.) Should the secti

Multiple project and Site plugin

2006-02-03 Thread javed mandary
Hi ppl, I have a project with many modules each having its own POM , what I would like to do is that when I generate my SITE in the parent directory , the child POMs are referenced in the generated index.html file. Is there some dashboard plugin or multiple project plugin to achieved thi

Re: Using cobertura with Maven 2

2006-02-03 Thread javed mandary
Hi Rik, I did as you told me , I was able to download part of the cobertura jars however was unable to download all required artifacts please see log: Downloading: http://snapshots.maven.codehaus.org/maven2//org/codehaus/mojo/cober tura-maven-plugin/2.0-SNAPSHOT/cobertura- maven-plugin-2.0-20060

[M2] release plugin using CVS with sourceforge

2006-02-03 Thread Paul Rule
Hi, Has anyone been using the Maven2 release plugin with CVS & sourceforge? I'm having a hard time trying to get it going - it may not be a maven problem but an SSH or some other set up problem. It gets as far as trying to check in pom.xml after it's updated the version - then it freezes which I

RE: site.xml descriptor

2006-02-03 Thread Scokart Gilles
Here is a sample project doing exactly what you want to do: nextMock images/nextmock_banner.png http://nextmock.sourceforge.net/ Hosted by sourceforge http://sourceforge.net http://sourceforge.net/sflogo.php?group_id=142555&type=1 http://w

site.xml descriptor

2006-02-03 Thread Guilherme Silveira
I can't find the descriptor for site.xml... I simply wanted to add sourceforge's logo to the bottom of the navigation menu but i couldnt find it looking at the docs... i believe it must be a simple tag to add a "menu image link"... Anyone? Thanks Guilherme -- Guilherme Silveira

Re: Problem trying to do a checkin

2006-02-03 Thread Emmanuel Venisse
I guess you run it like this: mvn scm:checkin Message it isn't the command line i wrote in my previous mail Emmanuel Malcolm Wong Ho a écrit : I'm getting this error now : [ERROR] BUILD FAILURE [INFO] [INFO] Invalid

RE: [M2] How to only delete .class files ?

2006-02-03 Thread Max Cooper
I am not using WSAD currently (so I can't check to see how we did it), but I am pretty sure there is a way to change the output directory in the Project Properties. I am almost certain we did that in a previous project using WSAD 5.1x that had an ejbModule component. -Max On Thu, 2006-02-02 at 13

Re: Problem trying to do a checkin

2006-02-03 Thread Emmanuel Venisse
you must provide a message mvn scm:checkin -Dmessage="your commit message" Emmanuel Malcolm Wong Ho a écrit : I'm having a problem performing a checkin, it seems like it is executing the checkout goal instead. INFO] [scm:checkin] [INFO]

RE : How to force download of internal snapshots ?

2006-02-03 Thread Olivier Lamy
Probably look at : mvn -h (parameter -U) -Message d'origine- De : LECAN Damien [mailto:[EMAIL PROTECTED] Envoyé : vendredi 3 février 2006 11:52 À : users@maven.apache.org Objet : How to force download of internal snapshots ? Hello, I work with maven 2.0.2 in a corporate environment wit

How to force download of internal snapshots ?

2006-02-03 Thread LECAN Damien
Hello, I work with maven 2.0.2 in a corporate environment with a maven-proxy for ibibli and co. and for our internal repository of releases and snapshots. Everything work fine with external artifacts and internal released artifacts. But for internal snapshots, maven refuses to download them. It a

RE: [M2] Need help on configuring maven.username ?

2006-02-03 Thread Malcolm Wong Ho
is there no way of setting it in a properties file ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Fri 2/3/2006 12:39 PM To: Maven Users List Subject: RE: [M2] Need help on configuring maven.username ? Have you tried passing the argument in the command l

Problem trying to do a checkin

2006-02-03 Thread Malcolm Wong Ho
Title: Problem trying to do a checkin I'm having a problem performing a checkin, it seems like it is executing the checkout goal instead. INFO] [scm:checkin] [INFO] [ERROR] BUILD ERROR [INFO] --

RE: [M2] Need help on configuring maven.username ?

2006-02-03 Thread fabrice . belingard
Have you tried passing the argument in the command line? "mvn -Dmaven.username=MyName ..." Best Regards / Cordialement, Fabrice BELLINGARD DINQ/DSIN/INSI/EATE/IDVS/AIDV (+33) (01 61) 45 15 91 - [EMAIL PROTECTED]

[M2] Need help on configuring maven.username ?

2006-02-03 Thread Malcolm Wong Ho
Where can i change the value/property for maven.username ? DISCLAIMER: This message may contain information which is confidential, private or privileged in nature. If you are not the intended recipient, you may not peruse, use, disseminate, distribute or copy this message or file which is att

Re: Using cobertura with Maven 2

2006-02-03 Thread Rik Bosman
Jared, I had the same problem and solved it with the following actions: - Add the version to both the plugins: 2.0-SNAPSHOT - Add the sandbox repository to the pom, see below. Hope this helps, Kindly revert for clarifications, Rik Maven Snapshots http://snapshots.maven.codehaus.org/

Re: Re : [m2] using xdoclet2 and maven2

2006-02-03 Thread Allan Ramirez
Do you have a proxy? If none, use -U to update your plugins. -allan DJP JEAN-PROST Dominique wrote: Hello, To help you help me, here is what I get when I try the -X option. Best regards for helping me. Dominique + Error stacktraces are turned on. [DEBUG] Building Maven user-level plugin re

Re : [m2] using xdoclet2 and maven2

2006-02-03 Thread DJP JEAN-PROST Dominique
Hello, To help you help me, here is what I get when I try the -X option. Best regards for helping me. Dominique + Error stacktraces are turned on. [DEBUG] Building Maven user-level plugin registry from: 'C:\Documents and Settings\djeanprost\.m2\plugin-registry.xml' [DEBUG] Building Maven globa

Re: Incorporating Doxia from svn into m2

2006-02-03 Thread Emmanuel Venisse
It's seems to be partially fixed. anchor rendering is fixed but not on section title. Please, file an issue. You're right, you must put new version in maven/lib directory Emmanuel Julian Wood a écrit : Hi, There's a bug in doxia which is purportedly fixed, and I want to use the fix. http:

cannot find internal repository

2006-02-03 Thread Horst-Günther Barzik
Hi, once started with maven I setup an internal repository in a directory, where I have a network link that allows direct access. Here's the profiles section of my settings.xml: development true danet-internal-repository our inte

Re: [m2eclipse] Eclipse WebTools and Maven2 "Publishing Failed"

2006-02-03 Thread John Fallows
On 2/3/06, Domsch, Christian <[EMAIL PROTECTED]> wrote: > > we do have the same problem (its not a M4 specific problem, > it also shows up on eclipse 3.1.2 with WTP 1.0). I would > really like to have a solution to that. > > Btw, I scanned the eclipse wtp bug list and found something > on there. Bu

RE: [m2eclipse] Eclipse WebTools and Maven2 "Publishing Failed"

2006-02-03 Thread Domsch, Christian
Hello, we do have the same problem (its not a M4 specific problem, it also shows up on eclipse 3.1.2 with WTP 1.0). I would really like to have a solution to that. Btw, I scanned the eclipse wtp bug list and found something on there. But they claim this has been solved since WTP 1.0M2 or somethin