Re: deploy question

2007-07-03 Thread Yann Le Du
e somewhere that all packages are listed in. Not sure whether this database is just meta data, or meta data + artifacts. Or am I misunderstanding something? Yann Le Du wrote: > I'm not sure to understand what you mean about registrar. > > Typically, a repository contains,

Re: deploy question

2007-07-03 Thread Yann Le Du
ust meta data? > 2) Does the registrar forward the request to the hosting site for > download or does it deliver it itself? > 3) How do you set up a local repository? > 4) Is Maven just for Java? > > Thanks, > Steve > > Yann Le Du wrote: >> Hi Steven, >> &g

Re: deploy question

2007-07-02 Thread Yann Le Du
Hi Steven, About site : http://maven.apache.org/plugins/maven-site-plugin/usage.html About dependencies : http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html - Yann On 7/2/07, Steven R Brandt < [EMAIL PROTECTED]> wrote: Hi, I'm new to Maven and have just bu

Re: APT + site.xml + parent directory

2007-01-15 Thread Yann Le Du
Hi Jan, Just add to your site.xml : Check the section "Including Generated Content" in http://maven.apache.org/plugins/maven-site-plugin/howto.html - Yann 2007/1/15, Jan-Oliver Wuelfing <[EMAIL PROTECTED]>: Hi all, is it possible to include a parent-link the to next upper index.html

Re: Howto deploy source jars to local repository maven2

2007-01-12 Thread Yann Le Du
Hi Thomas, You can use the performRelease option : mvn install -DperformRelease=true It installs, along the usual JAR, a "source JAR" and a "Javadoc JAR". - Yann 2007/1/12, Thomas Wabner <[EMAIL PROTECTED]>: Hi, we have the problem that we want to deploy source jar files with maven2 to our

Re: Correlation between tagging and versioning

2007-01-12 Thread Yann Le Du
oject, I'm using a dependency that is currently in SNAPSHOT release and won't be upgraded for a while.Is there a way to bypass this since this 3rd party dependency's release version is out of my control? -los Yann Le Du-4 wrote: > > Hi Los, > > maven-release-plugin

Re: Correlation between tagging and versioning

2007-01-11 Thread Yann Le Du
Hi Los, maven-release-plugin is your friend : http://maven.apache.org/plugins/maven-release-plugin/ Tag version and POM version must indeed match. - Yann 2007/1/11, moraleslos <[EMAIL PROTECTED]>: I'm about to tag my code in my repository to the maven-recommended x.x.x-y-z format-- prob

Re: R: [m2] Generating release POMs

2007-01-10 Thread Yann Le Du
Thanks for that - I hadn't noticed that part of that document. I guess this invites the question: does Maven currently recognise release-pom.xml's and use them in preference to pom.xml's? Mark The answer is yes. If your project contains a pom.xml and a release-pom.xml, then the release-pom.x

Re: [m2] Generating release POMs

2007-01-09 Thread Yann Le Du
+1 on that http://www.nabble.com/forum/ViewPost.jtp?post=6099444&framed=y&skin=177 - Yann 2007/1/9, Mark Hobson <[EMAIL PROTECTED]>: Hey there, Upon investigating whether generating release POMs [1] could resolve the problems with using version ranges, I discovered that it wasn't actually im

Re: excluding/including tests in surefire-plugin in different phases

2006-11-21 Thread Yann Le Du
diroussel, Try adding true in (not in ) and please let me know if it works. I too experienced this behaviour and found it pretty strange. - Yann 2006/11/15, diroussel <[EMAIL PROTECTED]>: Jan, did you find a solution to this? It looks to me that the exclude feature doesn't work, which is

Re: Dependency management

2006-09-27 Thread Yann Le Du
Hi Alexander, 2006/9/27, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]>: Hi, I have a few questions about modules and dependencies. Does the order of modules listed in the parent pom.xml matter? For example, if C depends on A and B depends on C, then the correct order would be:A,

Re: the default central repository for maven 2 is not ibiblio?

2006-09-27 Thread Yann Le Du
Hi Louis, http://repo1.maven.org/maven2/ is the official URL, but was once redirected to www.ibiblio.org/maven2/ . AFAIK, both repos are identical, so you don't need to specify any mirror. Though, if you want to use mirrors, you can check those : http://maven.apache.org/guides/mini/guide-mirror-

Re: releasing a tag

2006-09-12 Thread Yann Le Du
Maybe you could : - checkout the tag - change pom version to 2.2.3 - deploy (this is what mvn release:perform does from the tag) Does it address your need ? 2006/9/12, Douglas Ferguson <[EMAIL PROTECTED]>: Is there a way to release from a tag? Say I have my-app-2.2.3-RC-1 for release

Re: build definitions

2006-09-12 Thread Yann Le Du
Automating build definitions will be easier with Continuum 1.1 profiles : http://jira.codehaus.org/browse/CONTINUUM-243 - Yann 2006/9/12, Attila Mezei-Horvati <[EMAIL PROTECTED]>: Just started to use continuum (while switching from and to maven). I like it so far, kudos. :) I have a question

Re: Release plugin

2006-09-12 Thread Yann Le Du
For now, there doesn't seem to be a way to do so, but you can vote for http://jira.codehaus.org/browse/MRELEASE-159 if you like. 2006/9/12, Adrian Pillinger <[EMAIL PROTECTED]>: Is there a way to customize the SCM tag name that is suggested by default when you run release:prepare? e.g it curre

Re: Multi-binary project

2006-09-11 Thread Yann Le Du
The short answer would be no. One of Maven root principles is 1 project = 1 POM = 1 artifact. So typically you would have one project for the jar and one project for the war, with a dependency on the jar. http://maven.apache.org/guides/mini/guide-webapp.html 2006/9/11, Morgovsky, Alexander (US

Re: Invalid URL

2006-09-11 Thread Yann Le Du
Hi Ken, For now, and as is said in the error message, you cannot use SCM URLs. As a workaround, you can : - checkout sources locally, and use file upload - setup a CVS repo viewer like ViewVC (formerly ViewCVS), and use http URL - setup your CVS repo on WebDAV, and use http URL HTH, -

Re: How to join the mevenide mailing list?

2006-09-10 Thread Yann Le Du
http://mevenide.codehaus.org/mail-lists.html 2006/9/10, Naresh Bhatia <[EMAIL PROTECTED]>: Does anyone know how to join the mevenide mailing list? The "Lists" link on http://codehaus.org/ is broken so I don't know how to join that list. Thanks.

Re: [m2] release:prepare generateReleasePoms?

2006-09-01 Thread Yann Le Du
Hi, Are there any news about the generation of release-pom.xml with release:prepare ? The Mergere book talks about release-pom.xml without even mentioning generateReleasePoms argument - which anyway seems to be useless since, as stated below, the related code is not implemented (yet ?). Has the

Re: pom files not validating

2006-08-31 Thread Yann Le Du
OTECTED]> wrote: > > I deployed them with mvn deploy:deploy-file. > I had previously used mvn install:install-file and then copied them from > there to the internal repository, but there where no poms. So I then ran mvn > deploy:deploy-file. > > I let maven generate

Re: pom files not validating

2006-08-30 Thread Yann Le Du
How did you deploy your 3rd party library ? With mvn install:install-file ? Then, did you use the generatePom option or did you write the POM yourself ? - Yann 2006/8/30, Douglas Ferguson <[EMAIL PROTECTED]>: I have some 3rd party library dependencies that aren't in central so I deployed them

Re: Override dependency own dependency

2006-08-23 Thread Yann Le Du
Hi Sébastien, If you add directly dependency2 into your project POM, it should override the transitive one. Does it help ? - Yann 2006/8/23, Sébastien Boutté <[EMAIL PROTECTED]>: Hi, I would like to know how i can override a specific dependency of one of my dependency : My project has

Re: [m2] version resolution

2006-07-22 Thread Yann Le Du
gt; -Nathan > > -----Original Message- > From: Yann Le Du [mailto:[EMAIL PROTECTED] > Sent: Friday, July 21, 2006 4:43 AM > To: Maven Users List > Subject: Re: [m2] version resolution > > Hi Nathan, > > I don't know if this is what you are looking for, but : &g

Re: [m2] version resolution

2006-07-21 Thread Yann Le Du
Hi Nathan, I don't know if this is what you are looking for, but : http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Resolution - Yann 2006/7/18, Beyer,Nathan <[EMAIL PROTECTED]>: Is there a guide, document or piece of code that I can look at to determine the precedence

Re: Newbie: need to package a jar

2006-07-21 Thread Yann Le Du
Hi Denis, Is this helpful ? http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html - Yann 2006/7/21, Denis McCarthy <[EMAIL PROTECTED]>: Hi, I'm sure this question has been asked a thousand times before b

Re: Top-level POM behaviour

2006-06-21 Thread Yann Le Du
Hi Lars, Can you post your 4 POMs (A + B + C + top) ? - scramble confidential data first - Yann 2006/6/21, Lars Gramark <[EMAIL PROTECTED]>: Hello, I get a "Failed to resolve artefact" message when I'm installing one of my sub-projects. Here is the background: We have three projects A, B an

Re: dependency version ranges

2006-06-21 Thread Yann Le Du
2006/6/21, Mike Perham <[EMAIL PROTECTED]>: Does Maven support dependency version ranging? It does AFAIK. See http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Resolution#DependencyMediationandConflictResolution-DependencyVersionRanges or chapter 3.6 of Better Builds wi

Re: [m2] is maven-developer-activity-plugin a Maven 2 plugin???

2006-05-16 Thread Yann Le Du
Hi Leo, The developer activity report is part of the changelog-maven-plugin, which is a Maven 2 plugin with the groupId org:codehaus:mojo http://repo1.maven.org/maven2/org/codehaus/mojo/changelog-maven-plugin/ Note that it is planned to be moved to org.apache.maven.plugins:maven-changelog-plugin

Re: [M204] reporting inheritance

2006-05-12 Thread Yann Le Du
Hi Denis, Have a look at : http://jira.codehaus.org/browse/MNG-1931 Regards, - Yann 2006/5/12, Cabasson Denis <[EMAIL PROTECTED]>: Hi, I'm looking for some kind of reportManagement part in the POM. I'd like to set a default configuration for my reports in my parent POM without biding them as

Re: maven surefire-report invoking phase

2006-05-11 Thread Yann Le Du
Hi Pascal, You might want to check : http://jira.codehaus.org/browse/MSUREFIREREP-6 Regards, - Yann On 5/11/06, Pascal Magnard <[EMAIL PROTECTED]> wrote: Hello, i'm trying to use the surefire-report plugin to generate html files based on the result of the execution of my JUnit tests. I had th

Re: Error w/ Cobertura

2006-04-05 Thread Yann Le Du
Hi Rahul, AFAIK there has been no changes in settings.xml with Maven 2.0.3 : - sample conf/settings.xml hasn't changed a bit - rare source changes for 2.0.3 seem to be only bug fixes : http://svn.apache.org/viewcvs.cgi/maven/components/trunk/maven-settings/src/main/java/org/apache/mave

Re: Need advice on version numbering convention

2006-04-05 Thread Yann Le Du
Hi Man-Chi, About the Maven conventions, you can check out the first paragraph of http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Resolution HTH, - Yann On 4/5/06, Eric Redmond <[EMAIL PROTECTED]> wrote: > > Well, sorry to dissapoint, but I'm not an expert... I am, howev

Re: surefire-report plugin now hosted under maven.apache.org ???

2006-04-04 Thread Yann Le Du
AFAIK, the source of surefire report was "merely" moved to Apache, as have been other ones' (jxr, changes, changelog). So Apache source is the latest version, but no release has been done yet. For the moment, we must stick to groupId org.codehaus.mojo - or else use trunk builds . When releases are

Re: creating local repositories

2006-03-27 Thread Yann Le Du
Hi Alan, Your guess is correct, you can find more details here : http://docs.codehaus.org/display/MAVEN/Repository+Layout+-+Final - Yann On 3/27/06, Lewis Alan (BSN01) <[EMAIL PROTECTED]> wrote: > > Hi All. > > > > Sorry if this has already been asked / answered, I have just joined the > list.

Re: Maven 2 jira plugin?

2006-03-27 Thread Yann Le Du
ing to my Jira Bug tracking system? > > There isn't any page on > http://mojo.codehaus.org/changes-maven-pluginanymore. > > regards, > Javed > > On 3/27/06, Yann Le Du <[EMAIL PROTECTED]> wrote: > > > > Hi Javed, > > > > This is part of Moj

Re: Maven 2 jira plugin?

2006-03-27 Thread Yann Le Du
Hi Javed, This is part of Mojo's changes plugin : ~ ~ org.codehaus.mojo ~ changes-maven-plugin ~ Note this plugin has been moved to Maven, so in the future you will only need : ~ ~ maven-changes-plugin ~ Keep an eye on http://www.ibiblio.org/ma

Re: Manifest.mf Class-path

2006-03-24 Thread Yann Le Du
Are you using true in your s' s ? - Yann On 3/24/06, ttjarl <[EMAIL PROTECTED]> wrote: > > I have created a maven2 project with parent, EAR, WAR, EJB and a few JAR > POMs. There are also some dependencies and transitive dependencies. > > I am not able to make maven generate the Class-path attribu

Re: profile ant task

2006-03-24 Thread Yann Le Du
You can use antrun plugin in the POM of the application, is this what you need ? http://maven.apache.org/plugins/maven-antrun-plugin/ On 3/24/06, markford <[EMAIL PROTECTED]> wrote: > > > I am working on a large (for me) project with numerous environments and > applications all controlled by Mave

Re: Re: RE : Re: RE : Continuum 1.0.3 RC require some tester

2006-03-24 Thread Yann Le Du
about a migration tool, but I can't find the thread anymore... On 3/24/06, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: > > > > Yann Le Du a écrit : > > Hi Emmanuel, > > > > I just tried 20060324.02 and my problem about 2 build definitions > with > &g

Re: dashboard plugin in M2 gone ?

2006-03-23 Thread Yann Le Du
Hi Tony, It is not removed, but not re-written yet. Please check : http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix - Yann On 3/23/06, tony nys <[EMAIL PROTECTED]> wrote: > > Hi, > > We use maven a lot, and especially we want to generate > reports on projects such as pmd, checkstyle,..

Re: maven dependency graph

2006-03-22 Thread Yann Le Du
On Carlos' blog : http://jroller.com/page/carlossg#analyzing_jar_dependencies The tool used here - jaranalyzer - analyzes JARs themselves - not POMs. - Yann On 3/22/06, Wayne Fay <[EMAIL PROTECTED]> wrote: > > I know Carlos S. is somehow generating .dot files that he's able to > open in UMLGraph

Re: Building a J2EE app under Maven 2

2006-03-22 Thread Yann Le Du
closer. > > > On 22/03/06, Yann Le Du <[EMAIL PROTECTED]> wrote: > > > > I'm not sure to understand what you want to achieve. If you want to have > > some resources packaged in META-INF, just put them into : > > * src/main/resources/META-INF for JAR >

Re: Building a J2EE app under Maven 2

2006-03-22 Thread Yann Le Du
lt;[EMAIL PROTECTED]> wrote: > > > > > Well I started looking at the jar plugin first, and I couldn't see a way > > to limit what resources are added - not a problem for war or ear ? > > > > I suppose I could farm that out to ant ? > > > > >

Re: Building a J2EE app under Maven 2

2006-03-22 Thread Yann Le Du
Hi Mark, Did you check : http://maven.apache.org/guides/mini/guide-webapp.html http://maven.apache.org/plugins/maven-jar-plugin/ http://maven.apache.org/plugins/maven-war-plugin/ http://maven.apache.org/plugins/maven-ear-plugin/ - Yann On 3/22/06, Mark <[EMAIL PROTECTED]> wrote: > > Is there any

Re: Maven 2 and changes log from subversion

2006-03-22 Thread Yann Le Du
Hi Gianfranco, There indeed is a changelog plugin for m2. It was hosted by Mojo [1] , but is presently being moved to Maven. For the moment, you can use : org.codehaus.mojo changelog-maven-plugin When the plugin is moved, you'll be able to see it here [2]. Then you

Re: RE : Continuum 1.0.3 RC require some tester

2006-03-21 Thread Yann Le Du
Everything is working fine for me, especially http://jira.codehaus.org/browse/CONTINUUM-577 I fail to reproduce Olivier's problem, either with 20060316.173001 or 20060317.073000 . Only one of both definitions is executed (the last one in the list), but Continuum doesn't stop. Big thanks for this

Re: test report in m2

2006-03-11 Thread Yann Le Du
Last release of surefire-report-maven-plugin is indeed 2.0-beta-1 [1] 2.0-beta-4 is maven-site-plugin [2] [1] http://www.ibiblio.org/maven2/org/codehaus/mojo/surefire-report-maven-plugin/ [2] http://www.ibiblio.org/maven2/org/apache/maven/plugins/maven-site-plugin/ On 3/11/06, Miguel Griffa <[E

Re: release:prepare errors

2006-03-11 Thread Yann Le Du
This is also what we are doing, except that we never check-in the x.x.xversion (it goes only in the tag). This way, nobody else - including Continuum - will work on the version x.x.x and produce a x.x.x-stampedartifact that would erroneously look like a release. 1. Check that all dependencies are

Re: version 4.0.3 of jboss's jar ?

2006-03-10 Thread Yann Le Du
Hi Yan, Please read : http://maven.apache.org/guides/mini/guide-ibiblio-upload.html Examples of upload issues for 4.0.2 : http://jira.codehaus.org/browse/MAVENUPLOAD-762 http://jira.codehaus.org/browse/MAVENUPLOAD-764 http://www.ibiblio.org/maven2/jboss/jboss-client/4.0.2/ - Yann On 3/10/06, l

Re: release:prepare errors

2006-03-09 Thread Yann Le Du
I believe should be svn://css-paps/tmpSetup/projectName/tags (without scm stuff) Anyway, in your case you wouldn''t need to set it, since default is ../tags On 3/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I can not get the *releases:prepare* command to work. > I am using maven 2.0.2.

Re: [m2] Plugin documentation generator?

2006-03-08 Thread Yann Le Du
Hi Adrian, Adding the maven-plugin-plugin in reports will generate plugin documentation in the site : ~ ~ ~ ... ~ ~ org.apache.maven.plugins ~ maven-plugin-plugin ~ ~ ~ - Yann On 3/8/06, Adrian Herscu <[EMAIL PROTECTED]> wrote: > > Hi all, >

Re: dependency version syntax

2006-03-02 Thread Yann Le Du
Hi Luca, Correct :) Check out : http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Resolution - Yann On 3/2/06, Luca Gmail <[EMAIL PROTECTED]> wrote: > > Hi all, > > looking in some artifacts' pom in ibiblio, I found this: > > > eclipse > jdtcore > [3.1.0,) > compi

Re: import statements in Eclipse and maven2

2006-02-28 Thread Yann Le Du
The problem is in Maven embedder : http://jira.codehaus.org/browse/MNG-1070 2006/2/28, KC Baltz <[EMAIL PROTECTED]>: > > Don't you need to install the M2 Eclipse plugin to get this to > work? That's here: http://maven.apache.org/eclipse-plugin.html > > Note: the last I checked, the M2 Eclipse pl

Re: Problem With Release Plugin

2006-02-28 Thread Yann Le Du
You can add conf for release plugin : ~ ~ maven-release-plugin ~ ~ svn://host:3691/path/to/tags/ ~ ~ http://maven.apache.org/plugins/maven-release-plugin/prepare-mojo.html 2006/2/28, Allison, Bob < [EMAIL PROTECTED]>: > > I have a dev

Re: import statements in Eclipse and maven2

2006-02-28 Thread Yann Le Du
Right-click on project --> Maven2 --> Enable - Yann 2006/2/28, Jason Dillon <[EMAIL PROTECTED]>: > > Woah... How do you enable that? > > --jason > > > > > > -Original Message- > From: Kathryn Huxtable > To: Maven Users List > Sent: Mon Feb 27 21:05:50 2006 > Subject: Re: import statements

Re: Site customization

2006-02-28 Thread Yann Le Du
Hi Laurie, in your site.xml you can add e.g. : ~ ~ ~ SourceForge ~ http://images.sourceforge.net/sfx/logo.gif ~ http://sf.net ~ ~ ... Is it what you want ? http://maven.apache.org/guides/mini/guide-site.html - Yann 2006/2/28, Laurie Harper <[EMAIL PROTECTED]>: > > Hi, I ha

Re: Strange site plugin behaviour

2006-02-27 Thread Yann Le Du
Hi Alexandre, The pages are generated using Doxia, where the "true" HTML is generated [1] I think your problem is with the "About" page (index.html). This page is generated in maven-site-plugin. In SiteMojo.java [2] , generateIndexPage(), there is indeed a generated by section1() that is not clo

Re: OutOfMemoryError when creating Javadoc

2006-02-24 Thread Yann Le Du
OK, so the problem is not about 256 Mo then. Still the memory grows and never goes over some value (90 Mo for you). I think it's worth a JIRA issue, can you create one ? To solve your problem, you can try and fork the compile and test tasks, maybe you'll gain enough memory so that javadoc do not f

Re: OutOfMemoryError when creating Javadoc

2006-02-24 Thread Yann Le Du
I'm not even sure MAVEN_OPTS=-Xmx is efficient over 256 Mo. I tried several values and always the mvn task grew to about 256 Mo then stopped. Can you try again and watch in the task manager how the used memory evolves ? - Yann 2006/2/24, Thorsten Heit <[EMAIL PROTECTED]>: > > -BEGIN PGP SIGNE

Re: [m202][ot]

2006-02-23 Thread Yann Le Du
Usually I export then add again the directory. But don't hesitate to check the excellent SVN book for better solutions : http://svnbook.red-bean.com/ - Yann 2006/2/23, Mick Knutson <[EMAIL PROTECTED]>: > > I am trying to configure my release plugin, and have noticed I have > created > an incorrec

Re: Ant Script Path & Repository Variable

2006-02-23 Thread Yann Le Du
2006/2/23, Alex Eagar <[EMAIL PROTECTED]>: > > Where should Ant scripts ideally be placed within a Maven 2.x project? I > have placed them in /src/main/resources/ant. Is there anywhere more > maven-conventional? None that I know of :) How should I reference the local repository from an Ant scrip

Re: j2ee:appserver-stop

2006-02-23 Thread Yann Le Du
Hello Ryan, You can have a look at Cargo Maven plugin : http://cargo.codehaus.org/Maven1+plugin - Yann 2006/2/22, rturnbull <[EMAIL PROTECTED]>: > > Hello to all, > I'm looking for a way to stop and start a java application server > (oroin) from the maven.xml. Thought I could use j2ee:appse

Re: How add url link to dependencies

2006-02-23 Thread Yann Le Du
gt; > > > > Thanks, > Raghu > > > > > > "Yann Le Du" <[EMAIL PROTECTED]> > 02/21/2006 07:31 PM > Please respond to "Maven Users List" > > > To: "Maven Users List" > cc: > Subject:Re:

Re: Proxy settings question

2006-02-22 Thread Yann Le Du
Open your proxy.pac . It goes through some rules - probably depending on IPs - and eventually returns the proxy host and port, e.g. ' return "PROXY 20.140.15.83:3128"; ' --> host = 20.140.15.83 ; port = 3128 - Yann 2006/2/22, Dave Hoffer <[EMAIL PROTECTED]>: > > I understand that if I need to ru

Re: [M2 : site] Newbie question on how to generate site with test errors

2006-02-22 Thread Yann Le Du
http://jira.codehaus.org/browse/MOJO-107 2006/2/22, Michael Masters <[EMAIL PROTECTED]>: > > How can I get the site to generate when there are unit test failures? When > there are failures it doesn't generate the site and stops after running > the > test. > > thanks, > Mike > >

Re: [m2] Cannot generate test report with failing tests

2006-02-22 Thread Yann Le Du
Probably because if you do so you'll not be warned of test failures, which is not what you want in a normal build. 2006/2/22, Adrian Herscu <[EMAIL PROTECTED]>: > > From the surefire description > (http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html): > testFailureIgnore (Optional

Re: How add url link to dependencies

2006-02-21 Thread Yann Le Du
Hi Raghu, Try to : 1. Add the in Module A/pom.xml, but at top-level [1] 2. Run install on Module A 3. Run site-deploy on Module B The link to Module A should be included in Module B dependencies page. Moreover, if you use the same structure for your sites as for your projects, you need to add t

Re: [m2] Cannot generate test report with failing tests

2006-02-21 Thread Yann Le Du
Hi Adrian, This is a known issue : http://jira.codehaus.org/browse/MOJO-107 - Yann 2006/2/21, Adrian Herscu <[EMAIL PROTECTED]>: > > Hi all, > > I am trying the surefire reporting. > When all tests pass the report is generated with a 100% success rate :-) > When some test fail then the report is

Re: java compiler memory and/or forking problems

2006-02-21 Thread Yann Le Du
Hi Jake, I don't know about your fork error, I successfully forked the compiler both on Linux and Windows. But you can pass parameters to the Maven JVM using an env var called MAVEN_OPTS with value e.g. ' -Xms16m -Xmx64m ' (for further options, check bin\mvn.bat). Hope this helps, - Yann 2006/2

Re: ant plugin throwing error for execution of native2ascii task of ant

2006-02-21 Thread Yann Le Du
Hi Amit, You've already been replied on this one, please check : http://www.nabble.com/ant-plugin-throwing-error-for-execution-of-native2ascii-task-of-ant-t1146075.html#a3004852 - Yann 2006/2/21, Amit Khurana <[EMAIL PROTECTED]>: > > Hi Guys > > As my project supports many languages, so I have v

Re: Start the plugin you specified only

2006-02-21 Thread Yann Le Du
.org/viewcvs.cgi/ [3] http://svn.codehaus.org/?root=mojo 2006/2/21, Bill Yang <[EMAIL PROTECTED]>: > > Hello, > > Is there a easy way to download the plugin src from the maven trunk? > > Thanks. > > Bill > > -Original Message- > From: Yann Le Du [mailto

Re: Search maven 2 repository site?

2006-02-21 Thread Yann Le Du
Meanwhile, Google is still your friend :) Try with ' site: www.ibiblio.org/maven2 springframework ' HTML version : http://www.google.com/search"; method="get"> - Yann 2006/2/21, Brett Porter <[EMAIL PROTECTED]>: > > One will be available in the next few of weeks. Feel free to join the > de

Re: Start the plugin you specified only

2006-02-21 Thread Yann Le Du
Hi Juri, In the source of assembly mojo 2.0 [1], there is an ' @execute phase="package" ', which means the package phase will first be executed [2], therefore the compile phase before it [3] What you could do is building the assembly plugin after removing ' @execute phase="package" '. I tried it

Re: Config files - simple question

2006-02-20 Thread Yann Le Du
Hi Dave, To get conf files in the jar distribution, they must be "resources". The standard directory to put them into is src/main/resources [1] But if you want to use another directory (say, conf), you must tell the POM [2] : ~ ~ ~ ~conf ~ ~ ~ [1] http://maven.apa

[m2] maven-checkstyle-plugin 2.0 can't be retrieved

2006-01-31 Thread Yann Le Du
Hi, I've seen maven-checkstyle-plugin 2.0 is available since yesterday, which is good news ! http://www.ibiblio.org/maven2/org/apache/maven/plugins/maven-checkstyle-plugin/ Though, I'm still retrieving 2.0-beta-1, even with plugin update. maven-metadata still contains 2.0-beta-1 , this may be th

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-24 Thread Yann Le Du
2006/1/24, Emmanuel Venisse <[EMAIL PROTECTED]>: > > Ok, it's a bug in > > http://svn.apache.org/viewcvs.cgi/maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/inheritance/DefaultModelInheritanceAssembler.java?rev=306518&view=markup > in assembleScmInheritance method. > Thi

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-24 Thread Yann Le Du
you obtain the scm url? > > You're not the only one that can't build some provider, but for now, we > don't know why. We are > several people that run them without problem. > > Emmanuel > > Yann Le Du a écrit : > > Emmanuel, I couldn't build mave

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-23 Thread Yann Le Du
OJECT/parent/module Was the problem fixed on Jan 15th ? - Yann 2006/1/20, Yann Le Du <[EMAIL PROTECTED]>: > > Thanks Emmanuel, I'll try with maven-scm trunk then. > > - Yann > > 2006/1/19, Emmanuel Venisse < [EMAIL PROTECTED]>: > > > > Actually, you ne

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-23 Thread Yann Le Du
2006/1/20, Sean Schofield <[EMAIL PROTECTED]>: > > > How about this: > > scm:svn:svn://host/PROJECT/${pom.artifactId} > > > > This should work if you use the same name for the part in your svn > > repository as their artifactIds. > > This works. Unfortunately in our case the svn module does not ma

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-20 Thread Yann Le Du
AIL PROTECTED]>: > > Yann Le Du wrote: > > Hi, > > > > In order to ease Continuum use, we want to have the following project > > structure : > > > > ~ PROJECT > > ~ +-- parent > > ~ +-- pom.xml > > ~ +-- module > > ~ +--

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-20 Thread Yann Le Du
Thanks Emmanuel, I'll try with maven-scm trunk then. - Yann 2006/1/19, Emmanuel Venisse <[EMAIL PROTECTED]>: > > Actually, you need to define scm url in all your modules if you want to > use relative path. > This problem is fixed in maven-scm trunk. > > Emmanuel &g

[m2] Multiprojects and inherited SCM URLs

2006-01-19 Thread Yann Le Du
Hi, In order to ease Continuum use, we want to have the following project structure : ~ PROJECT ~ +-- parent ~ +-- pom.xml ~ +-- module ~ +-- pom.xml module has obviously parent for parent parent defines this SCM URL : scm:svn:svn://host/PROJECT/parent In module, this is inheirted

Re: [m2:newbie] Maven & Eclipse sysdeo

2006-01-16 Thread Yann Le Du
Kenavo Yann, You may need to add a conf for maven-war-plugin to specify your war source directory - for you, it equals the project root : ~ ~... ~ ~ ~maven-war-plugin ~ ~ ${basedir} ~ ~ ~ ~ http://maven.apache.org/plugins/maven-war-plug

Re: [ANN] Maven Install and Deploy Plugins (v2.1) released

2006-01-13 Thread Yann Le Du
It seems that knowing which Maven version is required will be addressed by the prerequisites tag : http://svn.apache.org/viewcvs.cgi/*checkout*/maven/plugins/trunk/maven-site-plugin/pom.xml http://maven.apache.org/maven-model/maven.html#class_prerequisite - Yann 2006/1/12, Christopher Cobb <[EMAI

Re: NoClassDefFoundError on unit test when doing mvn package, but mvn test works

2006-01-13 Thread Yann Le Du
Hi Matt, Could you provide your 3 POMs ? -- Yann 2006/1/12, Matt Gauger <[EMAIL PROTECTED]>: > > I'm using Maven 2.0.1 > I have a top-level pom.xml (pom) which builds 2 > modules. Module A has only external dependencies. Module B has > external dependencies, but is also dependent on Module A.

Re: [m2] jboss plugin docs location?

2006-01-13 Thread Yann Le Du
http://mojo.codehaus.org/jboss-maven-plugin/ 2006/1/12, Mick Knutson <[EMAIL PROTECTED]>: > > I want to use the jboss plugin to deploy my ear, but I can't find the docs > for it. Can someone please point me to the docs, or show an example of how > to use this plugin? > > > > --- > Thank You > Mick

Re: Using Maven Offline

2006-01-13 Thread Yann Le Du
Hi Paul, I had the same kind of problem. The only workaround I found is to add the repository location in an always-active profile in settings.xml : ... ~ ~ ~ ~ ~ corp-repository ~ file:myserver/maven/repository ~ ~ ~ env-corp ~ ~

Re: [m2] How to prevent transitive dependencies from a given dependency?

2006-01-11 Thread Yann Le Du
http://docs.codehaus.org/display/MAVENUSER/FAQs#FAQs-CanIdisabletransitivedependencies%3F 2006/1/11, Alessio Pace <[EMAIL PROTECTED]>: > > Hi, > > is there a way in maven2 to specify in my pom.xml that, for a given > dependency, I want to get it alone and not all the dependencies it > requires? >

Re: [m2] copy contents of maven.runtime.classpath [dependency-maven-plugin]

2006-01-11 Thread Yann Le Du
? I think this is because the 'compile' phase happens too late. Try 'generate-resources' http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html Also, there doesn't seem to be a configuration for , should there > be or is that not the intent of this

Re: [m2] Repository download failure when defining an xdoclet2 dependency

2006-01-11 Thread Yann Le Du
Hi Romain, These dependencies / versions aren't in central, so they won't be in mirrors either. If you think you don't need these dependencies for xdoclet, you can : 1. exclude them : http://docs.codehaus.org/display/MAVENUSER/FAQs#FAQs-CanIdisabletransitivedependencies%3F

Re: deploy .war to tomcat after continuum detects changes

2006-01-11 Thread Yann Le Du
Hi Adam, We have the same needs here. Currently, we are using a shell script that is launched by Continuum (Shell Project). But we're looking forward to using http://mojo.codehaus.org/tomcat-maven-plugin/ HTH, -- Yann 2006/1/11, Punkin Head <[EMAIL PROTECTED]>: > > Greetings: > > I am a first ti

Re: [m2] copy contents of maven.runtime.classpath for packaging

2006-01-10 Thread Yann Le Du
Hi Darren, Maybe you can use http://mojo.codehaus.org/dependency-maven-plugin/ in a phase before the one where you run your ant-run ? HTH, -- Yann 2006/1/10, Darren Hartford <[EMAIL PROTECTED]>: > > Hey all, > I have an ant-run task that helps to package a jar in a specific way. I > would like

Re: [m2] junit-test-reports with surefire-report:report

2006-01-10 Thread Yann Le Du
Brett, I failed to find the issue in JIRA. Which one is it ? Thx, -- Yann 2006/1/10, Jens Zastrow <[EMAIL PROTECTED]>: > > Some idea when this fill be fixed? > Running unit-tests as simple as possible - like >mvn test - is an > important aspect why i use maven1/2, > so its a little bit difficult

Re: Embedded error: Could not create task or type of type: scriptdef.

2006-01-10 Thread Yann Le Du
Hi Hassan, If this is not the case, try and move your to : ~ ~ ~ maven-antrun-plugin ~ ... ~ ~ ~ bsf ~ bsf ~ 2.3.0 ~ ~... -- Yann 2006/1/10, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > Hi > > I'm trying to use a non-standa

Re: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Yann Le Du
ringframework > spring-mock > > > > > (Acegi 0.9 is also depending on Spring 1.2.6, hence the Spring exclusions) > > Regards, > > /B-E > > -Ursprungligt meddelande- > Från: Yann Le Du [mailto:[EMAIL PROTECTED] &

Re: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Yann Le Du
Hi Bengt-Erik, Ran into the same one : http://www.mail-archive.com/users@maven.apache.org/msg31444.html Try and relocate the jspapi:jsp-api to javax.servlet:jsp-api in your local repository - take example on what has been done for servlet-api : http://www.ibiblio.org/maven2/servletapi/servlet-api

Re: Testing development version

2006-01-09 Thread Yann Le Du
snapshots (which sounds like 'straight > from the developers' ) versions? > > thanks, > valerio > > 2006/1/8, Yann Le Du <[EMAIL PROTECTED]>: > > > > Hi Gilles, > > > > You can find SNAPSHOT versions here : > > http://snapshots.ma

Re: "You need to define a connectionUrl parameter."

2006-01-09 Thread Yann Le Du
In some cases, I had to put also a beside . Maybe this is not the cause, but you can give it a try. -- Yann 2006/1/5, Christopher Cobb <[EMAIL PROTECTED]>: > > > -Original Message- > > From: Dennis Lundberg [mailto:[EMAIL PROTECTED] > > > > It's defined in your pom.xml. > > > > http://m

Re: RE : [m2] how to remove jar from .m2/repository

2006-01-08 Thread Yann Le Du
2006/1/5, Olivier Lamy <[EMAIL PROTECTED]>: > > Hi, > Maybe something too which clean SNAPSHOT previous when performing a > release ? > Probably dangerous but could be optionnal in release plugin ? > - Olivier +1 Could you file in http://jira.codehaus.org/browse/MRELEASE ? -- Yann -Message

Re: Testing development version

2006-01-08 Thread Yann Le Du
Hi Gilles, You can find SNAPSHOT versions here : http://snapshots.maven.codehaus.org/maven2/org/apache/maven/plugins/ -- Yann 2006/1/4, Scokart Gilles <[EMAIL PROTECTED]>: > > > > I would like to test some development version of some plugins, but it > appears that some SNAPSHOT versions are not

  1   2   3   >