Re: Release dependencies keep getting downloaded

2013-06-05 Thread Henri Tremblay
Connolly stephen.alan.conno...@gmail.comwrote: it would look something like version[1.7.3,)/version but most likely it will be a transitive dependency that some dependency of yours is pulling in. have a look at the output of dependency:tree On 29 May 2013 14:35, Henri Tremblay henri.tremb

Re: Release dependencies keep getting downloaded

2013-06-05 Thread Henri Tremblay
that some dependency of yours is pulling in. have a look at the output of dependency:tree On 29 May 2013 14:35, Henri Tremblay henri.tremb...@gmail.com wrote: A version range? How can I have a version range in a dependency tree? Aren't dependencies always fixed

Re: Release dependencies keep getting downloaded

2013-06-05 Thread Henri Tremblay
be proxying a Nexus group, but rather the specific repo(s) that you need. /Anders On Wed, Jun 5, 2013 at 1:46 PM, Henri Tremblay henri.tremb...@gmail.com wrote: I digged a bit and, helped by your thought, seem to have found the cause. We use Nexus to be a mirror of many repositories. All

Re: Release dependencies keep getting downloaded

2013-06-05 Thread Henri Tremblay
hosted artifacts resolved from central. By aggregating the aggregates you have duplicate artifacts and conflicts and start to rely on the priority rules, plus you cannot move and reprioritise content as easily. On 5 June 2013 13:26, Henri Tremblay henri.tremb...@gmail.com wrote: Why? Maven

Re: Release dependencies keep getting downloaded

2013-06-05 Thread Henri Tremblay
Maven Central in the mix also. On 5 June 2013 13:42, Henri Tremblay henri.tremb...@gmail.com wrote: That is extremely interesting. I'm not sure to understand why it makes a difference. Currently I have: - maven-public-mirror: A nexus group containing: - Maven Central

Release dependencies keep getting downloaded

2013-05-29 Thread Henri Tremblay
Hi, Some of metadata.xml files are downloaded for every build done from Jenkins. I don't know why. One example is org.jvnet.staxex:stax-ex:1.7.1 -X doesn't tell me anything How can I find out? (including where to put a breakpoint in the maven source code) Thanks Henri

Re: Release dependencies keep getting downloaded

2013-05-29 Thread Henri Tremblay
2013 13:30, Henri Tremblay henri.tremb...@gmail.com wrote: Hi, Some of metadata.xml files are downloaded for every build done from Jenkins. I don't know why. One example is org.jvnet.staxex:stax-ex:1.7.1 -X doesn't tell me anything How can I find out? (including where to put

Deploy an old parent pom

2009-12-29 Thread Henri Tremblay
Hi, Let's see is I can explain this clearly. 1- Versions 1.1 and 1.2 are deployed in the central maven repository from a rsync of my own repository 2- The maven-metadata.xml of the parent pom only mention 1.2 3- This is because the parent pom was deployed using mvn deploy:deploy-file I do I fix

Re: maven-remote-resources-plugin and org.apache:apache-jar-resource-bundle

2009-06-15 Thread Henri Tremblay
/). entry? Is it because maven, the plugin and the bundle content are used? That would be a little harsh since none of these are delivered. Any specific reason? Thanks, Henri On Sun, Jun 14, 2009 at 8:53 PM, Henri Tremblay henri.tremb...@gmail.comwrote: Yes :-( But is there a bundle

maven-remote-resources-plugin and org.apache:apache-jar-resource-bundle

2009-06-14 Thread Henri Tremblay
Hi, I'm moving a project to Apache license. The easiest for jar packaging seems to use the maven-remote-resources-plugin and org.apache:apache-jar-resource-bundle. However, I'm annoyed by two lines in the notice: This product includes software developed at The Apache Software Foundation

Re: maven-remote-resources-plugin and org.apache:apache-jar-resource-bundle

2009-06-14 Thread Henri Tremblay
license. Henri Tremblay wrote: Hi, I'm moving a project to Apache license. The easiest for jar packaging seems to use the maven-remote-resources-plugin and org.apache:apache-jar-resource-bundle. However, I'm annoyed by two lines in the notice: This product includes software developed

Re: Issues with Maven 2.1.0 resume from feature

2008-09-23 Thread Henri Tremblay
the reactor plugin which is currently being prepared for release. - Brett 2008/9/23 Henri Tremblay [EMAIL PROTECTED]: Arg.. forget the attachment (which I'm not even sure is going through) - To unsubscribe, e-mail: [EMAIL

Issues with Maven 2.1.0 resume from feature

2008-09-22 Thread Henri Tremblay
Hi, I'm really interested in the new make feature which could greatly improve my team productivity. I think it's a great idea! Sadly, I failed to make it work and since I understand it is a M1 version so there's not much documentation yet, here I am. Lets start with my first issue. What is the

How to upload a parent pom to maven repository

2007-12-09 Thread Henri Tremblay
Hi, An easy question here but how can't find any documentation about it. I want to upload a jar to the maven repository. This jar extends a parent pom. And I have no clue on how to upload the parent (repository plugin can't create bundle for pom projects). Anyone can help? Thanks, Henri

Re: Maven Community news @ blog.octo.com

2007-05-04 Thread Henri Tremblay
said, you replied on the mailing list, thus I'll reply in english ;-) On 03/05/07, Stephane Nicoll [EMAIL PROTECTED] wrote: Howdy, Comments inline. Writing in English would have been more appropriate but I guess you just send the mail to the wrong recipient :) On 5/2/07, Henri Tremblay

Re: Maven Community news @ blog.octo.com

2007-05-02 Thread Henri Tremblay
Salut, Dommage, en fait c'était pour la mailing list, je croyais que j'avais reçu le mail personnellement. Je voulais envoyer un message à la liste mais puisque je t'ai sous la main, je me pose des questions sur l'avenir de maven. En fait j'ai dû mener un dur combat contre certaine limitation

Applet with maven 2

2007-04-16 Thread Henri Tremblay
Hello everyone, I'm trying to do something that I think is quite common but can't find an easy way to do it. Here's how it goes: I have a war that basically contains nothing except a jar which contains an applet. The applet jar is for performance reason an ueber jar. How would you do something

Assembling sources with the assembly plugin

2007-01-22 Thread Henri Tremblay
Hi, It seems that assembly plugin version 2.1 has issues with includes / excludes for module sets. Specifically, unless I'm mistaken, includes seems to be ignored and excludes are only working on directories. That's how it turned out from my tests. However, 2.2 with the fileSets seems to work

Testing multiple JVM

2007-01-10 Thread Henri Tremblay
Hi, I would like to run my tests on multiple JVMs. Which brings two questions: 1- Is there a way to fork in a new JVM? 2- Can I launch my tests multiple times? I'm looking for something more mavenized than and ant task or a batch file calling maven test multiple times changing JAVA_HOME each

Re: Testing multiple JVM

2007-01-10 Thread Henri Tremblay
Answering my own questions, 1- Yes it is. Just use the jvm parameter of the surefire plugin 2- Just add multiple plugin executions with different JVMs On 1/10/07, Henri Tremblay [EMAIL PROTECTED] wrote: Hi, I would like to run my tests on multiple JVMs. Which brings two questions: 1

Re: ANT script without a phase binding?

2006-12-28 Thread Henri Tremblay
Hi, I'm also interested in doing that. But the parameters passed to antrun:run are quite complex. Can you give me a command line example of how you would call a given target from a build.xml? Thanks, Henri On 12/28/06, Eric Redmond [EMAIL PROTECTED] wrote: Yeah, you can run the antrun:run

Re: Re: Merging projects

2006-12-27 Thread Henri Tremblay
inheritedfalse seems to work fine. However, the plugin is called too soon. The children projects are compiled after the plugin being executed... The idea of doing another project depending on the others seems feasible. Just need to make sure I can then upload this final project to the maven

Merging projects

2006-12-25 Thread Henri Tremblay
Hi, I'm trying to do something silly but I can't figure out how to do it easily. I have about 6 projects. They all extends a parent project in the base directory. This parent project contains a module for each sub-project. I want to build a final jar merging the binary files from all my

Re: Uploading artifacts to ibiblio

2004-07-12 Thread Henri Tremblay
Ok, done. It's jira MAVENUPLOAD-171 As mentionned in the task: Here's the latest hibernate version bundle. I deduced the dependencies from the lib/README.txt. I removed all optional jars. Some initiatives I took: - Replace

Need hibernate-2.1.4 uploaded to iblio

2004-06-17 Thread Henri Tremblay
Hello, The subject says it all. I'm not quite sure I'm using the correct method to do such a request though. If not, I'm sorry. (And will be happy to learn what I should have done). Thanks, Henri

Re: Need hibernate-2.1.4 uploaded to iblio

2004-06-17 Thread Henri Tremblay
PROTECTED] Sent: Thursday, June 17, 2004 9:37 PM Subject: Re: Need hibernate-2.1.4 uploaded to iblio Henri Tremblay wrote: Hello, The subject says it all. I'm not quite sure I'm using the correct method to do such a request though. If not, I'm sorry. (And will be happy to learn what I should