Re: deploy question

2007-07-03 Thread Yann Le Du
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, About site : http://maven.apache.org/plugins/maven-site-plugin/usage.html About dependencies : http://maven.apache.org/guides/introduction

Re: deploy question

2007-07-03 Thread Yann Le Du
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, for each artifact, a JAR - containing

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

Re: APT + site.xml + parent directory

2007-01-15 Thread Yann Le Du
Hi Jan, Just add to your site.xml : body menu ref=parent / 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

Re: Correlation between tagging and versioning

2007-01-12 Thread Yann Le Du
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 is your friend : http://maven.apache.org/plugins

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-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--

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

Re: [m2] Generating release POMs

2007-01-09 Thread Yann Le Du
+1 on that http://www.nabble.com/forum/ViewPost.jtp?post=6099444framed=yskin=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

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

2006-11-21 Thread Yann Le Du
diroussel, Try adding skiptrue/skip in pluginconfiguration (not in execution) 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

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 :

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, C

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

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: 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: 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: 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: 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

Re: pom files not validating

2006-08-31 Thread Yann Le Du
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 the poms. -Original Message- From: Yann Le Du [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 30, 2006

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 a

Re: [m2] version resolution

2006-07-22 Thread Yann Le Du
\ maven \ artifact \ versioning Wayne On 7/21/06, Beyer,Nathan [EMAIL PROTECTED] wrote: That's exactly what I was looking for, thanks. Do you, or anyone, happen to know what Maven component implements this resolution? I'm curious. Thanks. -Nathan -Original Message- From: Yann Le

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

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: 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

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 and C

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

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 the

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, however,

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 :

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: Maven 2 jira plugin?

2006-03-27 Thread Yann Le Du
Hi Javed, This is part of Mojo's changes plugin : ~ plugin ~ groupIdorg.codehaus.mojo/groupId ~ artifactIdchanges-maven-plugin/artifactId ~ /plugin Note this plugin has been moved to Maven, so in the future you will only need : ~ plugin ~

Re: Maven 2 jira plugin?

2006-03-27 Thread Yann Le Du
it pointing 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 Mojo's changes plugin : ~ plugin

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. What I

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 the same schedule is seemlingly still happening. But now, only

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 Maven. I

Re: Manifest.mf Class-path

2006-03-24 Thread Yann Le Du
Are you using archivemanifestaddClasspathtrue in your plugins' configurations ? - 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

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 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 : plugin groupIdorg.codehaus.mojo/groupId artifactIdchangelog-maven-plugin/artifactId /plugin When the plugin is

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: Building a J2EE app under Maven 2

2006-03-22 Thread Yann Le Du
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 ? On 22/03/06, Yann Le Du [EMAIL PROTECTED] wrote: Hi Mark, Did you check : http://maven.apache.org/guides/mini/guide

Re: Building a J2EE app under Maven 2

2006-03-22 Thread Yann Le Du
[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 ? On 22/03/06, Yann Le Du [EMAIL PROTECTED] wrote

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 and

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: 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: 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

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,

Re: release:prepare errors

2006-03-09 Thread Yann Le Du
I believe tagBase 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

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 : ~ reporting ~ plugins ~ ... ~ plugin ~ groupIdorg.apache.maven.plugins/groupId ~ artifactIdmaven-plugin-plugin/artifactId ~ /plugin ~ /plugins ~

Re: Site customization

2006-02-28 Thread Yann Le Du
Hi Laurie, in your site.xml you can add e.g. : ~ project name=MyProject ~ bannerLeft ~ nameSourceForge/name ~ srchttp://images.sourceforge.net/sfx/logo.gif/src ~ hrefhttp://sf.net/href ~ /bannerLeft ~ ... Is it what you want ?

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 in Eclipse and

Re: Problem With Release Plugin

2006-02-28 Thread Yann Le Du
You can add conf for release plugin : ~ plugin ~ artifactIdmaven-release-plugin/artifactId ~ configuration ~ tagBasesvn://host:3691/path/to/tags//tagBase ~ /configuration ~ /plugin

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 plugin

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 div class=section generated by section1()

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 SIGNED

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

Re: Multi module projects

2006-02-23 Thread Yann Le Du
Hi Max, 2006/2/23, Max [EMAIL PROTECTED]: Hi, Is it possible to setup a multi-module project such that a child module can be shared between two parent projects? What if i have two seperate projects A and B and they both depend upon a module C. How do i do this since there is only one

Re: How add url link to dependencies

2006-02-23 Thread Yann Le Du
~ moduleModule A/module ~ moduleModule B/module ~ ... ~ /modules ~ ... ~ /project 2006/2/22, [EMAIL PROTECTED] [EMAIL PROTECTED]: Thanks for your reply, Can u give some example for this? Please Thanks, Raghu Yann Le Du [EMAIL PROTECTED] 02/21/2006 07:31 PM Please respond

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

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 project/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

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 incorrect

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: [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: 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 run

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: 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 : form action= http://www.google.com/search; method=get input type=hidden name=sitesearch value=www.ibiblio.org/maven2 / input id=googleQuery type=text name=q / input type=submit

Re: Start the plugin you specified only

2006-02-21 Thread Yann Le Du
] 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: [EMAIL PROTECTED] ] Sent: Tuesday, February 21, 2006 10:10 AM

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

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

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 not

Re: How add url link to dependencies

2006-02-21 Thread Yann Le Du
Hi Raghu, Try to : 1. Add the url 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

[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 release2.0-beta-1/release

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-24 Thread Yann Le Du
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 maven-scm trunk, there are test failures in maven-scm-provider-svn

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=306518view=markup in assembleScmInheritance method. This method

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-23 Thread Yann Le Du
/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 need to define scm url in all your modules if you want to use

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 Yann Le Du a écrit : Hi, In order

Re: [m2] Multiprojects and inherited SCM URLs

2006-01-20 Thread Yann Le Du
]: Yann Le Du wrote: 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

[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

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 : ... ~ profiles ~profile ~ repositories ~repository ~ idcorp-repository/id ~

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 Knutson

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 (packagingpom/packaging) which builds 2 modules. Module A has only external dependencies. Module B has external dependencies, but is also dependent

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

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 time

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 :

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

2006-01-11 Thread Yann Le Du
there be or is that not the intent of this plugin? http://jira.codehaus.org/browse/MOJO-213 -D -Original Message- From: Yann Le Du [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 5:52 PM To: Maven Users List Subject: Re: [m2] copy contents of maven.runtime.classpath

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? Thanks

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 dependency to plugin : ~ plugins ~plugin ~ artifactIdmaven-antrun-plugin/artifactId ~ ... ~ dependencies ~dependency ~ groupIdbsf/groupId ~ artifactIdbsf/artifactId ~ version2.3.0/version

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 to

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 to

Re: You need to define a connectionUrl parameter.

2006-01-09 Thread Yann Le Du
In some cases, I had to put also a developerConnection beside connection . 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

Re: Testing development version

2006-01-09 Thread Yann Le Du
PROTECTED]: i'm quite new to maven, but i'm wondering what a snapshot actually is. and, what should I do to use these 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

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 :

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

2006-01-09 Thread Yann Le Du
/exclusion /exclusions /dependency (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] Skickat: den 9 januari 2006 17:42 Till: Maven Users List Ämne: Re: How to prevent jar

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

Re: [m2] Artifact relocations and scope priorities

2005-12-28 Thread Yann Le Du
.). Is there a https access ? -- Yann 2005/12/27, Carlos Sanchez [EMAIL PROTECTED]: IIRC there was a jira issue that was fixed On 12/27/05, Yann Le Du [EMAIL PROTECTED] wrote: Carlos, This is no problem, I can do any patch for acegi. What I'm asking is if there is a better way to handle

Re: [m2] Using optional ant tasks with antrun plugin

2005-12-28 Thread Yann Le Du
Hi Ralph, Try ant-nodeps instead of ant-optional, there is a 1.6.5 and I believe this is the new name for ant-optional. -- Yann 2005/12/28, Ralph Pöllath [EMAIL PROTECTED]: Hi, I'd like to use the antrun plugin to execute optional ant tasks. Extending the example from

Re: [m2] Setting up m2 internal repository

2005-12-27 Thread Yann Le Du
Hi Valerio, Actually the Maven 2 central repository is : http://www.ibiblio.org/maven2/ (with a '2') -- Yann 2005/12/27, Valerio Schiavoni [EMAIL PROTECTED]: Hello, i'm willing to set-up an internal repository. we're just starting up with maven 2.x , and i found these infos:

Re: [m2] Setting up m2 internal repository

2005-12-27 Thread Yann Le Du
about Deploying to the Internal Repository is sadly empty... thanks, valerio 2005/12/27, Yann Le Du [EMAIL PROTECTED]: Hi Valerio, Actually the Maven 2 central repository is : http://www.ibiblio.org/maven2/ (with a '2') -- Yann 2005/12/27

  1   2   3   >