Re: [VOTE] Release Maven Stage Plugin 1.0-alpha-1

2008-10-26 Thread Dan Tran
I have a plexus component to merge repos together, it is out curiosity to see of wagon-maven-plugin can replace maven-stage-plugin to support more target and source types, However this work is not surfaced to be a mojo yet. And Since I am not directly use this baby for my work yet, i dont plan t

RE: Could anyone give me some idea what is the difference bwteen ant and maven?

2008-10-26 Thread Jeff Jensen
I like your analogy Brian. Additionally, I think the Sonatype Maven book has a nice comparison: http://www.sonatype.com/book/reference/introduction.html#sect-compare-ant-maven (and I think this is a User-list question, not a Developer-list one?) -Original Message- From: Brian E. Fox [ma

RE: Could anyone give me some idea what is the difference bwteen ant and maven?

2008-10-26 Thread Brian E. Fox
Na, ant is the hammer and the wrench where you fix it yourself. Maven is the contractor you hire and tell him what to build. -Original Message- From: Oleg Gusakov [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2008 9:03 PM To: Maven Developers List Cc: [EMAIL PROTECTED] Subject: Re:

Re: Could anyone give me some idea what is the difference bwteen ant and maven?

2008-10-26 Thread Oleg Gusakov
I hope we are both on the same page that assembler, like ant, is a procedural language, while both Maven and SQL could be characterized as non-procedural, a.k.a. declarative. Ant is a good OS-independent shell, while Maven is "code comprehension" tool, that also happens to be a superior build

RE: preserving order of dependencies

2008-10-26 Thread nick pellow
Hi Brian, Thanks for the help. I'm just confirming that using a java.util.LinkedHashSet wherever MavenProject.setDependencyArtifacts is called works fine in 2.0.9. I had two locations in the plugin which call that method. Cheers, Nick. Brian E Fox wrote: > > The only maven version that gu

Re: [VOTE] Release Maven Stage Plugin 1.0-alpha-1

2008-10-26 Thread Benjamin Bentmann
Brian E. Fox wrote: Pietro, the stage plugin tries to use scp to upload and unpack the tar Dan Tran was recently working on the wagon-maven-plugin over at Mojo and I noticed he also added some stuff for repo copying. This plugin is currently in the Mojo sandbox, i.e. I am not sure how mature

RE: [VOTE] Release Maven Stage Plugin 1.0-alpha-1

2008-10-26 Thread Brian E. Fox
Pietro, the stage plugin tries to use scp to upload and unpack the tar, then copy it over, which means it won't work with Nexus or other repo managers. -Original Message- From: Pietro Biondo [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2008 1:11 PM To: dev@maven.apache.org Subject:

Re: [VOTE] Release Maven Stage Plugin 1.0-alpha-1

2008-10-26 Thread Pietro Biondo
The follwoing command creates a zipfile of the source repository and copies it to the target repository. solaris_x86> mvn -e stage:copy -Dsource="file:/wwl/bip/.m2/repository" -Dtarget="http://wbuscczs01:8443/nexus/content/repositories/stage"; -DtargetRepositoryId=nexus-deploy -Dversion=2.0.3 Bu