Re: Maven Wagon Plugin - Documentation
Hi Baptiste, I want to deploy an EAR file to a remote JBoss server. I tried it with the cargo plugin but it didn't work (see http://www.nabble.com/cargo%3Adeploy-and-Jboss-5%3A-problem-deploying-an-EAR-remotely-to21141731.html Deploy using cargo ) I tried it with the jboss-maven-plugin but it didn't work (see http://www.nabble.com/jboss%3Adeploy-and-Jboss-5%3A-problem-deploying-an-EAR-remotely-tt21147286.html#a21147286 Deploy using the jboss-maven-plugin ) Therefore I want to try the wagon plugin. This link http://mojo.codehaus.org/wagon-maven-plugin/ http://mojo.codehaus.org/wagon-maven-plugin/ seems to contain the necessary information (many thanks to Dan Tran). Best Regards. Jean-Claude Baptiste MATHUS wrote: > > Maven wagons are low-level API imo. You might want to use a higher one. > What do you want to do? Transfer some file after packaging or something > like > this? Is this close to deployment? Artifact staging? Remote resource > retrieval?... > > Cheers. > > 2008/12/24 Rouvinez, Jean-Claude > >> Hi, >> >> I want to use the Maven Wagon Plugin (http://maven.apache.org/wagon/) to >> transfer files to a remote host but didn't find any useful documentation >> with examples or usage. >> Does anyone know any useful links to this plugin? >> >> Thank You for Your Help. >> >> Best Regards >> Jean-Claude >> >> - >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org >> For additional commands, e-mail: users-h...@maven.apache.org >> >> > > > -- > Baptiste MATHUS - http://batmat.net > Sauvez un arbre, > Mangez un castor ! > > -- View this message in context: http://n2.nabble.com/Maven-Wagon-Plugin---Documentation-tp1729539p2073575.html Sent from the maven users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org
Re: Maven Wagon Plugin - Documentation
sorry fast finger, http://mojo.codehaus.org/wagon-maven-plugin On Wed, Dec 24, 2008 at 12:04 PM, Dan Tran wrote: > try http://mojo.codehaus.org/wagon-mven-plugin > > On Wed, Dec 24, 2008 at 6:11 AM, Baptiste MATHUS wrote: >> Maven wagons are low-level API imo. You might want to use a higher one. >> What do you want to do? Transfer some file after packaging or something like >> this? Is this close to deployment? Artifact staging? Remote resource >> retrieval?... >> >> Cheers. >> >> 2008/12/24 Rouvinez, Jean-Claude >> >>> Hi, >>> >>> I want to use the Maven Wagon Plugin (http://maven.apache.org/wagon/) to >>> transfer files to a remote host but didn't find any useful documentation >>> with examples or usage. >>> Does anyone know any useful links to this plugin? >>> >>> Thank You for Your Help. >>> >>> Best Regards >>> Jean-Claude >>> >>> - >>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org >>> For additional commands, e-mail: users-h...@maven.apache.org >>> >>> >> >> >> -- >> Baptiste MATHUS - http://batmat.net >> Sauvez un arbre, >> Mangez un castor ! >> > - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org
Re: Maven Wagon Plugin - Documentation
try http://mojo.codehaus.org/wagon-mven-plugin On Wed, Dec 24, 2008 at 6:11 AM, Baptiste MATHUS wrote: > Maven wagons are low-level API imo. You might want to use a higher one. > What do you want to do? Transfer some file after packaging or something like > this? Is this close to deployment? Artifact staging? Remote resource > retrieval?... > > Cheers. > > 2008/12/24 Rouvinez, Jean-Claude > >> Hi, >> >> I want to use the Maven Wagon Plugin (http://maven.apache.org/wagon/) to >> transfer files to a remote host but didn't find any useful documentation >> with examples or usage. >> Does anyone know any useful links to this plugin? >> >> Thank You for Your Help. >> >> Best Regards >> Jean-Claude >> >> - >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org >> For additional commands, e-mail: users-h...@maven.apache.org >> >> > > > -- > Baptiste MATHUS - http://batmat.net > Sauvez un arbre, > Mangez un castor ! > - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org
Re: Maven Wagon Plugin - Documentation
Maven wagons are low-level API imo. You might want to use a higher one. What do you want to do? Transfer some file after packaging or something like this? Is this close to deployment? Artifact staging? Remote resource retrieval?... Cheers. 2008/12/24 Rouvinez, Jean-Claude > Hi, > > I want to use the Maven Wagon Plugin (http://maven.apache.org/wagon/) to > transfer files to a remote host but didn't find any useful documentation > with examples or usage. > Does anyone know any useful links to this plugin? > > Thank You for Your Help. > > Best Regards > Jean-Claude > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- Baptiste MATHUS - http://batmat.net Sauvez un arbre, Mangez un castor !
Re: Maven Wagon
Hi, nap4110 schrieb: Hi Newbie here: We want to use wagon to grab specific artifacts from our repository. I have looked at the sample test case provided by apache here: http://svn.apache.org/repos/asf/maven/wagon/trunk/wagon-provider-test/src/main/java/org/apache/maven/wagon/WagonTestCase.java What isn't clear is how we instantiate the Wagon obj. Wagon wagon = (Wagon) lookup( Wagon.ROLE, getProtocol() ); The wagons are implementet as Plexus [1] components and in the testcase the wagon to use is looked up in the container. However, it should be possible without problems to use the wagon for the protocol you need as a simple java class and just instantiate it: Wagon myWagon = new HttpWagon(); Not sure how this works. If anyone has a more straightfowared example I would appreciate the assistance. Thanks, Neil -Tim [1] http://plexus.codehaus.org/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Maven Wagon
A few months ago I posted several times about the deficiencies of wagon. You can probably find them in the archives. If not let me know and I can repost them. But through all the smoke and mirrors, one of the most important modules wagon encapsulates is com.jcraft.jsch. If you look at this driver (its written in Java, but reminds me very much of an old procedural C code driver), you will discover that the "Bridge" pattern implementation is incomplete. Hope this helps. -John Redden Sr. Consultant matrix-consultants.com On Thu, 2007-08-02 at 09:46 -0400, Alan D. Salewski wrote: > On Wed, Aug 01, 2007 at 10:10:13PM -0400, Timothy Reilly spake thus: > > > > > > > > Is there additional information on Wagon besides > > > http://maven.apache.org/wagon ? > > > > I have been working with wagon for the last couple of days. The best > > I've personally have found is to read the code: > > http://svn.apache.org/viewvc/maven/wagon/trunk/ > *snip* > > There is also an 'org.apache.myfaces.maven:wagon-maven-plugin': > > http://myfaces.apache.org/wagon-maven-plugin/ > > Though it was developed for the Apache MyFaces project, it's > functionality is of general use by other projects. We have several > projects using it for deployment of non-maven-build artifacts. > > -Al > - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Maven Wagon
On Wed, Aug 01, 2007 at 10:10:13PM -0400, Timothy Reilly spake thus: > > > > > Is there additional information on Wagon besides > > http://maven.apache.org/wagon ? > > I have been working with wagon for the last couple of days. The best > I've personally have found is to read the code: > http://svn.apache.org/viewvc/maven/wagon/trunk/ *snip* There is also an 'org.apache.myfaces.maven:wagon-maven-plugin': http://myfaces.apache.org/wagon-maven-plugin/ Though it was developed for the Apache MyFaces project, it's functionality is of general use by other projects. We have several projects using it for deployment of non-maven-build artifacts. -Al -- :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: Alan D. Salewski Software Developer Health Market Science, Inc. :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Maven Wagon
There's probably some info in the free PDF e-books from Devzuz and Sonatype, and of course in the source code itself. Wayne On 8/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Is there additional information on Wagon besides > http://maven.apache.org/wagon ? > > > This email message and any attachments may contain confidential, > proprietary or non-public information. The information is intended solely > for the designated recipient(s). If an addressing or transmission error > has misdirected this email, please notify the sender immediately and > destroy this email. Any review, dissemination, use or reliance upon this > information by unintended recipients is prohibited. Any opinions > expressed in this email are those of the author personally. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: Maven Wagon
> > Is there additional information on Wagon besides > http://maven.apache.org/wagon ? I have been working with wagon for the last couple of days. The best I've personally have found is to read the code: http://svn.apache.org/viewvc/maven/wagon/trunk/ If you have specific questions, maybe myself or other's can answer? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Maven Wagon Provider File
Hello Fred, In my opinion, don't try to use Wagon with another protocol than HTTP. With others protocols, Maven doesn't run (or with a lot of difficulty). Bye. Mikl On 2/13/07, Fred Foucart <[EMAIL PROTECTED]> wrote: Hello everybody, I try to install an internal repository. Before to go further, I'd like to test the repository I've created (on my local file system) I know that there is the Maven Wagon Provider File API but I have difficulties to use it. Is it possible to have tips to use this API ? Thanks in advance. Fred
Re: Maven Wagon vs Depot
On Thu, 2004-02-05 at 10:16, Villevalois Didier wrote: > Hi all! > > I would like if there are relations between Wagon and the Depot > incubator project. Nope. > If non yet, will there be ?? I doubt it. > It seems to me that > there is a big overlap between thos two projects. Do i miss something ??? What is there to miss? Two separate projects doing similiar things. Happens everywhere and Apache is certainly no exception. > ++didier > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- jvz. Jason van Zyl [EMAIL PROTECTED] http://maven.apache.org happiness is like a butterfly: the more you chase it, the more it will elude you, but if you turn your attention to other things, it will come and sit softly on your shoulder ... -- Thoreau - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: Maven Wagon vs Depot
> -Original Message- > From: Villevalois Didier [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 05, 2004 4:17 PM > To: [EMAIL PROTECTED] > Subject: Maven Wagon vs Depot > > > Hi all! > > I would like if there are relations between Wagon and the Depot > incubator project. If non yet, will there be ?? It seems to me that > there is a big overlap between thos two projects. Do i miss > something ??? > I am not aware of any kind of relations between those two projects excepts this one that they are more and less about the same thing. But friendly competition in case of such small libraries is not so bad. Specially for end-users which have a choice. Wagon is supposed to be nothing more then helper project of Maven and to be compatible with other projects developed under maven umbrella. Michal - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]