[SCM-953] Deprecate commercial and CVS providers

2021-09-18 Thread Michael Osipov
Dear Users, please be informed that with Maven SCM 1.12.0 *all* commercial providers and CVS providers have been deprecated and are scheduled for removal for the next major version. There are several reasons why (does not apply to CVS): * We do not have any access to those SCMs and cannot

Re: mvn site:deploy SCM: No such provider: 'cvs'

2018-01-24 Thread Basin Ilya
I have an empty java project. First I do `mvn site:site` and a site is >> created in target/ Then I do `mvn site:deploy` and it fails with "No such >> provider". It doesn't seem to reach the point where it calls the cvs >> binary. >> >> >> Here

Re: mvn site:deploy SCM: No such provider: 'cvs'

2018-01-23 Thread Hervé BOUTEMY
ils with "No such > provider". It doesn't seem to reach the point where it calls the cvs > binary. > > > Here's my pom.xml : > > > http://maven.apache.org/POM/4.0.0"; > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >

mvn site:deploy SCM: No such provider: 'cvs'

2018-01-23 Thread Basin Ilya
vider". It doesn't seem to reach the point where it calls the cvs binary. Here's my pom.xml : http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache

Re: question about release:branch with CVS

2013-02-27 Thread Robert Scholte
Hi, you haven't specified the version of the maven-release-plugin you're using. If you haven't locked the version, it is probably 2.0, which is rather old. You should try 2.4. If remote tagging is not supported CVS yet, please create an for the SCM project[1], patches

question about release:branch with CVS

2013-02-26 Thread Andras Nagy
Dear All, I have a question regarding the release plugin's branch goal. What I am trying to achieve (using CVS for scm) is this: -I have a release on the HEAD, let's call this 1.1, with release tag "REL_1_1" -I have new changes committed to HEAD (in 1.1-SNAPSHOT) -I have

Re: maven release plugin with CVS, alternative to CVSPRO for client?

2012-06-27 Thread Robert Scholte
There are 2 implementations for cvs[1]: - java version, which is the default - native version. AFAIK both implementations should work together with the maven-release-plugin. -Robert [1] http://maven.apache.org/scm/cvs.html Op Wed, 27 Jun 2012 21:24:06 +0200 schreef Tim Dugan : Hi All

maven release plugin with CVS, alternative to CVSPRO for client?

2012-06-27 Thread Tim Dugan
Hi All, I'd like to try out the maven release plugin and I have a CVS repository. >From a link off the Maven Wiki >(http://docs.codehaus.org/display/MAVENUSER/Create+a+release+using+CVSNT) and >from a great write up here ( >http://java.dzone.com/articles/automating-rele

How scm plugin encyrpts cvs password ?

2012-04-12 Thread public charly
Greetings, I got a cvs authentification problem with the following items : Used elements : cvsnt maven 3 scm 1.6 Windows 2003 Server Procedure follows (No .cvspass in my USER_DIR) : . 1. I run a mvn --encrypt password password and copy paste the result in my tags. 2. I run

Re: release:prepare scm and cvs..

2010-11-16 Thread Antonio Petrelli
2010/11/16 jeb001 : > I'm trying to build my first release using maven.. and I've got that error : > "Missing required setting: scm connection or developerConnection must be > specified." > > So, I had in my main pom.xml those lines : >         >                 > scm:cvs:pserver:user:@cvsIP:/cvs:m

release:prepare scm and cvs..

2010-11-16 Thread jeb001
I miss something.. but what ?? Thx, Jeremy -- View this message in context: http://maven.40175.n5.nabble.com/release-prepare-scm-and-cvs-tp3267083p3267083.html Sent from the Maven - Users mailing list archive at Nabble.com. --

CVS : passing the "prune empty directories" flag to the checkout command

2010-09-28 Thread Jad SAMAHA
Hello everyone, I'm trying to get maven to checkout projects using the -P flag, which stands for "prune empty directories". This flag is quite useful since CVS does not really provide an option to remove directories and this flag is the only way (as far as I know) to extract a

CVS checkout with maven is not working

2010-08-29 Thread monica
I am using maven-scm-plugin plugin and using developerconnection. which has following values scm:cvs:pserver:USER:passwo...@idadress:PORT:/home/cvs:${checkout.module} org.apache.maven.plugins maven-scm-plugin 1.3 developerConnection ${cvsTrunkVersion} ${cvsBranchTag

Maven release plugin + CVS

2010-07-07 Thread Cecchi Sandrone
I have a problem while performing a mvn release:prepare task when the project is downloaded from CVS, because the files are read only (so pom.xml can't be updated with new version). Error writing POM: C:\Documents and Settings\a.dionisi\Desktop\PLX\Source\AuditingWebService\pom.xml (Acce

SCM for cvs version 1.12.12

2010-05-28 Thread Timothy Mcginnis
I am using CVS for my SCM. I have one repository that is version 1.11.14 and one that is 1.12.12. When I try to do a release using the 1.12.12 CVS repository I get the error "Received unknown response from server". But when I use the 1.11.14 repository it works. Is there a CVS p

Re: how to use maven-scm-plugin to checkout a CVS tag

2010-03-18 Thread Dan Tran
never mind, The secret is in scmVersionType adn scmVervsion configuration On Thu, Mar 18, 2010 at 1:02 AM, Dan Tran wrote: > Hi every one, > > I have a need to checkout a CVS tag at build time, and have no idea > how to configure the tag. Any advice is greatly appreciated &g

how to use maven-scm-plugin to checkout a CVS tag

2010-03-18 Thread Dan Tran
Hi every one, I have a need to checkout a CVS tag at build time, and have no idea how to configure the tag. Any advice is greatly appreciated here is my configuration ${cvsroot}:mymodule Thanks -Dan - To unsubscribe

RE: maven release from CVS tag

2010-02-03 Thread Ahmet Maruf Aytekin
release from CVS tag I'm not 100% sure on this, but if you configure your SCM-portion of the POM for the tag/branch, it *MIGHT* work. Only problem I see is that in CVS a tag is read-only, because it is a specific point. This means that maven might not be able to update the POMs and commit

Re: maven release from CVS tag

2010-02-02 Thread Roland Asmann
I'm not 100% sure on this, but if you configure your SCM-portion of the POM for the tag/branch, it *MIGHT* work. Only problem I see is that in CVS a tag is read-only, because it is a specific point. This means that maven might not be able to update the POMs and commit them. Anyway, try addin

maven release from CVS tag

2010-02-02 Thread Maruf Aytekin
Hi All How do I make maven release from a CVS tag with maven releas eplugin? I am aware that this is not a good practice but we are making releases from CVS tags instead of head. The company I work for has been following this method for their some unique resons which I am not agreed. I am trying

Where can I put CVS credentials outside my project?

2009-12-30 Thread laredotornado
Hi, I'm using Maven 2.2. Currently in my root pom.xml, I have scm:cvs:pserver:dalvar...@localhost:/usr/local/cvs/abc:myco/galc/capitol/tours myco-galc-capitol-tours-1_0_5 This is needed when preparing and performing a release. However, I would like to move this o

How to checkout multiple projects from CVS using Maven

2009-10-27 Thread zainab . madawala
Hi All I need to checkout all the projects under a specific branch in CVS using Maven. In my POM.xml, I have the following scm:cvs:pserver:[username]:@[server name][path to module]:[moduleName] [tag name] This is a single POM which I have for all my modules. I want to pass a

Re: Remove CVS credentials from pom.xml

2009-09-25 Thread Todor Boev
set up in their settings.xml? /Anders On Fri, Sep 25, 2009 at 10:48, Todor Boev wrote: Hi, I am using the release plugin with CVS. Is there a way to remove the CVS user name and password from the pom.xml? I am setting up a maven project for 20+ developers and it would be bad if every one of them

Re: Remove CVS credentials from pom.xml

2009-09-25 Thread Anders Hammar
two pre-define properties for this, which everyone needs to >>> set >>> up in their settings.xml? >>> >>> /Anders >>> >>> On Fri, Sep 25, 2009 at 10:48, Todor Boev wrote: >>> >>> Hi, >>>> I am using the release

Re: Remove CVS credentials from pom.xml

2009-09-25 Thread Anders Hammar
gs.xml? >> >> /Anders >> >> On Fri, Sep 25, 2009 at 10:48, Todor Boev wrote: >> >> Hi, >>> I am using the release plugin with CVS. Is there a way to remove the CVS >>> user name and password from the pom.xml? I am setting up a maven project &g

Re: Remove CVS credentials from pom.xml

2009-09-25 Thread Todor Boev
have two pre-define properties for this, which everyone needs to set up in their settings.xml? /Anders On Fri, Sep 25, 2009 at 10:48, Todor Boev wrote: Hi, I am using the release plugin with CVS. Is there a way to remove the CVS user name and password from the pom.xml? I am setting up a

Re: Remove CVS credentials from pom.xml

2009-09-25 Thread Anders Hammar
Why not have two pre-define properties for this, which everyone needs to set up in their settings.xml? /Anders On Fri, Sep 25, 2009 at 10:48, Todor Boev wrote: > Hi, > I am using the release plugin with CVS. Is there a way to remove the CVS > user name and password from the pom.

Remove CVS credentials from pom.xml

2009-09-25 Thread Todor Boev
Hi, I am using the release plugin with CVS. Is there a way to remove the CVS user name and password from the pom.xml? I am setting up a maven project for 20+ developers and it would be bad if every one of them needs to keep a modified pom.xml in their machine with their user name. I tried the

Re: Can't run the release plugin with CVS

2009-09-24 Thread Todor Boev
Okay...the problem was that I had a stale invalid configuration from a previous attempt. I had to run "mvn release:clean" and after that things worked out nicely. Todor Boev wrote: Hi, I am trying to get the maven release plugin to work against our corporate CVS repository. For th

Can't run the release plugin with CVS

2009-09-24 Thread Todor Boev
Hi, I am trying to get the maven release plugin to work against our corporate CVS repository. For the death of me I can't figure out what to do to configure the CVS connection. What's worse is that I managed to get the SCM plugin to connect on itself. But when the release plugin u

RE: How to set up SCM/CVS/Maven integration with public key authentication?

2009-06-15 Thread Matt Brown
Created: http://jira.codehaus.org/browse/SCM-477 Thanks. -Original Message- From: anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] On Behalf Of Anders Hammar Sent: Monday, June 15, 2009 3:46 PM To: Maven Users List Subject: Re: How to set up SCM/CVS/Maven integration with

Re: How to set up SCM/CVS/Maven integration with public key authentication?

2009-06-15 Thread Anders Hammar
ring for the passphrase when authenticating with a public > key. > > To tell the scm/CVS plugin the correct passphrase to use, you need to set a > System property for the key "maven.scm.cvs.java.ssh.passphrase", i.e. > >    mvn scm:status -Dmaven.scm.cvs.java.ssh.passp

RE: How to set up SCM/CVS/Maven integration with public key authentication (need help!)?

2009-06-15 Thread Matt Brown
For anyone who runs into this problem in the future: After downloading the scm plugin source, I discovered that the plugin is using an empty string for the passphrase when authenticating with a public key. To tell the scm/CVS plugin the correct passphrase to use, you need to set a System

RE: How to set up SCM/CVS/Maven integration with public key authentication?

2009-06-15 Thread Matt Brown
For anyone who runs into this problem in the future: After downloading the scm plugin source, I discovered that the plugin is using an empty string for the passphrase when authenticating with a public key. To tell the scm/CVS plugin the correct passphrase to use, you need to set a System

How to set up SCM/CVS/Maven integration with public key authentication (need help!)?

2009-06-12 Thread Matt Brown
I have a section in a POM that looks something like this: scm:cvs:ext:myhostname:/cvsroot/repo:module_name I typically use publickey auth to authentication against this cvs server, although it should accept my password as well. When I attempt to run 

How to set up SCM/CVS/Maven integration with public key authentication?

2009-06-11 Thread Matt Brown
I have a section in a POM that looks something like this: scm:cvs:ext:myhostname:/cvsroot/repo:module_name I typically use publickey auth to authentication against this cvs server, although it should accept my password as well. When I attempt to run 

mvn release:prepare with CVS extssh

2009-05-15 Thread Salomo Petrus
For some reason when using: mvn release:prepare -Dmaven.scm.provider.cvs.implementation=cvs_native Maven cannot commit the changed POM file I get this: Provider message: The cvs command failed. Command output: Cannot access /web/cvs /CVSROOT No such file or directory at

Switch off CVS log messages

2009-04-24 Thread Berwanger, Christian
Hi, I have a problem that I want to switch off the fetch of cvs log messages. I found in the SCM API following function at the class CvsLogListener: /** * Called when the server wants to send a message to be displayed to the * user. The message is only for information

Re: first use of Maven -- how to check cvs repository and build when something has changed

2009-03-13 Thread Chris Stoughton
> > > > 1. Does continuum detect that there is a change in cvs? > > 2. Given that there is a change, what phase of maven does the cvs > > checkout? > > Probably best to come join us on us...@continuum then, instead of the > maven list. :) > > Generally you add

project exists in cvs; how to check whether there are updates and then build?

2009-03-13 Thread Chris Stoughton
I suspect this is a solved problem, but I can't find an example or description. I am starting to use Maven2. I have a java project that is in cvs. I want to use mvn to check whether there are any change in the cvs repository and, if so, update, and build. I managed to get the scm:boot

Re: first use of Maven -- how to check cvs repository and build when something has changed

2009-03-12 Thread Wendy Smoak
On Thu, Mar 12, 2009 at 8:30 PM, Chris Stoughton wrote: > I have continuum installed, but I need to install a Maven2 build. > > 1.  Does continuum detect that there is a change in cvs? > 2.  Given that there is a change, what phase of maven does the cvs > checkout? Probably best

Re: first use of Maven -- how to check cvs repository and build when something has changed

2009-03-12 Thread Chris Stoughton
I have continuum installed, but I need to install a Maven2 build. 1. Does continuum detect that there is a change in cvs? 2. Given that there is a change, what phase of maven does the cvs checkout? Sorry, this must be obvious once you see it -- thanks! On Thu, Mar 12, 2009 at 9:35 PM

Re: first use of Maven -- how to check cvs repository and build when something has changed

2009-03-12 Thread Wendy Smoak
On Thu, Mar 12, 2009 at 7:32 PM, Chris Stoughton wrote: > I have a java project that is in cvs.  I want to use mvn to check whether > there are any change in the cvs repository and, if so, update, and build. The easiest way would be to install one of the many continuous integration s

first use of Maven -- how to check cvs repository and build when something has changed

2009-03-12 Thread Chris Stoughton
I suspect this is a solved problem, but I can't find an example or description. I am starting to use Maven2. I have a java project that is in cvs. I want to use mvn to check whether there are any change in the cvs repository and, if so, update, and build. I managed to get the scm:boot

Property filtering using CVS branch tag name and date/time stamp

2009-03-12 Thread jkwuc89
During assembly creation inside my Maven project, I need to filter a resource file named build.info that contains the following: ${cvs.branch.tag.name} ${time.stamp} GMT During filtering, cvs.branch.tag.name needs to be replaced with the CVS branch tag name from the file, CVS/Tag. time.stamp

SCM and CVS Export

2009-03-06 Thread Hunt, Mary
I am new to Maven2, and but am an experienced Ant user. I am trying to write a pom that will do the following: 1. Export source from CVS repository based on a tag 2. Compile and package the exported source. I have 2 problems. 1. When I export the source from CVS it creates a duplicate folder

Re: CVS command line parameters

2008-10-13 Thread Brett Porter
in which plugin? SCM? (one way outside of Maven is to use ~/.cvsrc if it will always be used). - Brett 2008/10/14 Jon Strayer <[EMAIL PROTECTED]>: > How can I pass command line parameters to CVS? I want to do an update with > -C. > > -- > Esse Quam Videre > To

CVS command line parameters

2008-10-13 Thread Jon Strayer
How can I pass command line parameters to CVS? I want to do an update with -C. -- Esse Quam Videre To Be, rather than to Seem

Re: Maven SCM (CVS) usage

2008-10-08 Thread Marvin Froeder
Ok, I will use cvs_native. Thanks guys. VELO On Wed, Oct 8, 2008 at 5:37 AM, Emmanuel Venisse <[EMAIL PROTECTED] > wrote: > Hi Velo, > By default, maven-scm use a pure java cvs client (a netbeans > implementation) and the "auto-login" feature doesn't work well wi

Re: Maven SCM (CVS) usage

2008-10-08 Thread Emmanuel Venisse
Hi Velo, By default, maven-scm use a pure java cvs client (a netbeans implementation) and the "auto-login" feature doesn't work well with external tool. By using the native cvs client, you use the command line, so if you already log in to a cvs server, all works fine like a di

Re: Maven SCM (CVS) usage

2008-10-07 Thread Marvin Froeder
Yes, and if I add -Dmaven.scm.provider.cvs.implementation=cvs_native It works. Any thoughts? VELO On Tue, Oct 7, 2008 at 8:50 PM, Brett Porter <[EMAIL PROTECTED]> wrote: > Are you able to run other cvs commands from the command line? Is your > home directory set consistently? &

Re: Maven SCM (CVS) usage

2008-10-07 Thread Brett Porter
Are you able to run other cvs commands from the command line? Is your home directory set consistently? 2008/10/8 Marvin Froeder <[EMAIL PROTECTED]>: > Hi folks, > > I'm using maven SCM to develop a maven plugin. > > And I got this exception: > org.apache.maven.

Maven SCM (CVS) usage

2008-10-07 Thread Marvin Froeder
Hi folks, I'm using maven SCM to develop a maven plugin. And I got this exception: org.apache.maven.scm.ScmException: password is required. You must run a 'cvs -d :pserver:[EMAIL PROTECTED]:2401/cvsroot/eclipse login' first or provide it in the connection

RE: cvs with privateKey [Virus checked]

2008-07-17 Thread Jeudy, Guillaume
Hi, It's funny you asked, I just went through this recently. Do you already have a private key setup with your ssh prog? maven will automatically search for your private key in known locations such as ~/.ssh/id_dsa, ~/.ssh/id_rsa. Then you may have to setup a passphrase in your ~/.m2/settin

How to checkout latest code from CVS?

2008-06-30 Thread Anand Kulkarni
Hi, I want to check out latest code from CVS using Maven. I browsed the SCM project and found the following URL: http://maven.apache.org/scm/plugins/checkout-mojo.html The link founds good but how to introduce it into my pom.xml file is not discussed. Can you please throw some light on this

CVS, maven2 release plugin, best practice

2008-06-25 Thread Jeudy, Guillaume
. The branch is getting created in CVS and pom files are updated appropriately. Now let's say I need to apply a bugfix to my branch. 1. I checkout branch in a separate workspace. I apply fixes check them in to the branch. I create a tag say: 1_0_branch_fix1. At this point should I update

RE: Use Maven2 to build from a CVS tag

2008-06-18 Thread Jeudy, Guillaume
I suggest you read up on maven release plugin: http://maven.apache.org/plugins/maven-release-plugin/introduction.html I don't use it any differently then the official usage. The plugin doesn't generate a pom file but rather modifies the existing pom file with a new version and che

Re: Use Maven2 to build from a CVS tag

2008-06-18 Thread Mikel Cármenes Cavia
I'm developing a tool that among other things, allows for the user to pick a CVS version and build it with maven (this is part of the process anyways). While I have not got as far as you seem to be yet, I do not know of any automated way to do this. Could you elaborate on how you use the

Use Maven2 to build from a CVS tag

2008-06-18 Thread Jeudy, Guillaume
Hi maven savvy developers, Is there an automated way to trigger a maven build from a cvs tagged version ? Basically I want to check out the source code for a given tag and trigger the maven build. So far I need to do these steps separately (checkout with cvs then build with maven). I use

Maven 1.x Cruise control cvs update problem

2008-06-03 Thread maneo
Hi, I'm using CruiseControl Maven (1.x) Plugin I have a problem with cvs update of my project files. From that what i know maven scm plugin updates project (maven scm:update-project) and when it's done, build process starts. After recent update I found a lot of empty directories in C

Maven CVS checkout/comple examples

2008-05-29 Thread King, Leon C
Guys, I'm a newbie to maven and I'm in the process of migrating from ant. Can anyone proved me an example of how to define a pom that checks out code from a cvs repository, gathers all the dependencies, and builds.??? I've yet to find one.. Thanks, Leon

Re: CVS checkout from tag using maven

2008-04-22 Thread Sowmya . R
Hi,Can you please provide me full details to do tag checkout from CVS using maven. I have to do checkout from command-line using mvn scm:checkout. On Tue, Apr 22, 2008 at 9:57 PM, Wayne Fay <[EMAIL PROTECTED]> wrote: > Does it work if you put the tag etc directly in the pom ra

Re: CVS checkout from tag using maven

2008-04-22 Thread Wayne Fay
checking out the project from CVS using maven only from HEAD.I > want to checkout using tag But I am not able to checkout through tag. > Please help me out from this issue > > I am using like this > > >scm:cvs:pserver:${myname}:[EMAIL PROTECTED]: > //CVSHOME:aa/bb/

CVS checkout from tag using maven

2008-04-22 Thread Sowmya . R
Hi, I am checking out the project from CVS using maven only from HEAD.I want to checkout using tag But I am not able to checkout through tag. Please help me out from this issue I am using like this scm:cvs:pserver:${myname}:[EMAIL PROTECTED]: //CVSHOME:aa/bb/${mybranch

wrong status for removed file in cvs with scm

2008-04-06 Thread Benoit Decherf
scm status doesn't detect removed files in cvs : It only says : "[INFO] Unknown file status: 'R'." I can see that for the status the problem comes from CvsStatusConsumer : else if ( statusString.equals( "D" ) ) { status = ScmFileStatu

Re: cvs ssh problem

2008-03-31 Thread Jon Strayer
On Mon, Mar 31, 2008 at 5:13 PM, Jon Strayer <[EMAIL PROTECTED]> wrote: > I fixed this by performing the update via cvs on the command line. After > that Maven worked fine. > > It seems it was hanging on the prompt about host authentication. > > I take that back. mvn

Re: cvs ssh problem

2008-03-31 Thread Jon Strayer
I fixed this by performing the update via cvs on the command line. After that Maven worked fine. It seems it was hanging on the prompt about host authentication. On Mon, Mar 31, 2008 at 8:16 AM, Jon Strayer <[EMAIL PROTECTED]> wrote: > On Sun, Mar 30, 2008 at 11:54 PM, Barrie Treloa

Re: cvs ssh problem

2008-03-31 Thread Jon Strayer
; able to log in then too. > > > > What do I need to look at next? > > Have you tried > > > org.apache.maven.plugins > maven-scm-plugin > > > cvs_native > > > > > There is something I remember about mvn using an internal cvs tool > until you set this value. > > Can't recall the exact details now. > It's still hanging. -- Esse Quam Videre To Be, rather than to Seem

Re: cvs ssh problem

2008-03-30 Thread Barrie Treloar
t; in a Windows shell (/cygwin/bin/ssh [EMAIL PROTECTED]) and I was > able to log in then too. > > What do I need to look at next? Have you tried org.apache.maven.plugins maven-scm-plugin cvs_native

cvs ssh problem

2008-03-30 Thread Jon Strayer
Given this scm entry from a pom: scm:cvs:ext:${cvs.user)@ freehost3270.org:/home/jstrayer/cvsroot:freehost3270 when I execute mvn scm:update It just hangs as if it's waiting for a password somewhere. But when I execute ssh [EMAIL PROTECTED] I am connecte

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-28 Thread Sowmya . R
service? - I'd be very grateful if I > could > get some pointers here!. > > > Sowmya.R wrote: > > > > Hi, I am also new user of this maven. > > > > I will tell you one simple step to do this. > > > > checkout the project from cvs using ecl

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-28 Thread [EMAIL PROTECTED]
has a war and jar and a web service? - I'd be very grateful if I could get some pointers here!. Sowmya.R wrote: > > Hi, I am also new user of this maven. > > I will tell you one simple step to do this. > > checkout the project from cvs using eclipse.With in the proj

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-27 Thread Sowmya . R
Hi, I am also new user of this maven. I will tell you one simple step to do this. checkout the project from cvs using eclipse.With in the project your going to get pom.xml. using that pom.xml just replace the values in SCM your having in username and password (what I have sent earlier

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-27 Thread [EMAIL PROTECTED]
t -Dmybranch=abcd/xyz -Dmydir=test > scm:checkout > > > > On Thu, Mar 27, 2008 at 6:11 PM, [EMAIL PROTECTED] < > [EMAIL PROTECTED]> wrote: > >> >> Hello There >> >> I am trying to use maven to check out my project from cvs but I haven't >

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-27 Thread Sowmya . R
PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hello There > > I am trying to use maven to check out my project from cvs but I haven't > been > able to get the correct syntax in the pom.xml file in order to do this. > Could anyone point me to the right direction!. Th

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-27 Thread [EMAIL PROTECTED]
Hello There I am trying to use maven to check out my project from cvs but I haven't been able to get the correct syntax in the pom.xml file in order to do this. Could anyone point me to the right direction!. Thanks for your help. Sowmya.R wrote: > > Hi Wayne , > I got where i

How to checkout the particular tag from CVS using scm tags in maven 2.0.7

2008-03-24 Thread Sowmya . R
Hi, When I am doing the direct checkout from the cvs it is creating Entries,Root,Repository and Tag documents within CVS folder and that particular tag is downloading. But when i am doing with maven it is only creating the Entries,Root,Repository in CVS folder and by default it is downloading the

SCM checkout from CVS using tag......

2008-03-24 Thread Sowmya . R
Hi, When I am doing the direct checkout from the cvs it is creating Entries,Root,Repository and Tag documents within CVS folder and that particular tag is downloading. But when i am doing with maven it is only creating the Entries,Root,Repository in CVS folder and by default it is downloading the

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-24 Thread Wayne Fay
I am almost no help when it comes to CVS. We moved to Subversion years ago and never looked back. You may want to send a new email to this list with a new subject ("SCM checkout from CVS using tag" or something) and see if someone has a response. Or just search the list archives at Nabb

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-24 Thread Sowmya . R
Hi Wayne , I got where is that problem . When I am doing the direct checkout from the cvs it is creating Entries,Root,Repository and Tag documents within CVS folder and that particular tag is downloading. But when i am doing with maven it is only creating the Entries,Root,Repository in CVS folder

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-23 Thread Sowmya . R
if i give the foldername it is working fine , but if i give the particular tag example : xtlients/xttest/Version/PROD_1.1 It is giving the error "cvs checkout: cannot find module" Please let me know what will be the solution for this issue. On Wed, Mar 19, 2008 at 8:49 PM, Wayne F

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-20 Thread Wayne Fay
t people use Maven. Instead you should > > look at storing these values in settings.xml. > > > > Wayne > > > > On 3/19/08, Sowmya. R <[EMAIL PROTECTED]> wrote: > > > Hi Wayne, > > > > > > I am trying to do for CVS not with the remote reposit

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-19 Thread Sowmya . R
R <[EMAIL PROTECTED]> wrote: > > Hi Wayne, > > > > I am trying to do for CVS not with the remote repository. > > I am using > > > >scm:cvs:pserver:xxx:[EMAIL PROTECTED] > :/istcvs/CVSHOME:xtclients/xtTest > >scm:cvs:pserver:xxx:[EMAIL PROTECTED

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-19 Thread Wayne Fay
ne, > > I am trying to do for CVS not with the remote repository. > I am using > >scm:cvs:pserver:xxx:[EMAIL > PROTECTED]:/istcvs/CVSHOME:xtclients/xtTest >scm:cvs:pserver:xxx:[EMAIL > PROTECTED]:/istcvs/CVSHOME:xtclients/xtTest >scm:cvs:pser

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-19 Thread Sowmya . R
Hi Wayne, I am trying to do for CVS not with the remote repository. I am using scm:cvs:pserver:xxx:[EMAIL PROTECTED]:/istcvs/CVSHOME:xtclients/xtTest scm:cvs:pserver:xxx:[EMAIL PROTECTED]:/istcvs/CVSHOME:xtclients/xtTest scm:cvs:pserver:xxx:[EMAIL PROTECTED]:/istcvs

Re: How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-18 Thread Wayne Fay
Take a look at the SCM plugin: http://maven.apache.org/scm/plugins/examples/bootstrapping-with-pom.html Wayne On 3/18/08, Sowmya. R <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on the maven tool for my project ,where I have to > checkout from CVS and I want to ask f

How to checkout the Project from cvs in Maven2.0.7 without using eclipse.

2008-03-18 Thread Sowmya . R
Hi, I am working on the maven tool for my project ,where I have to checkout from CVS and I want to ask for CVS user id and password from the user while checkingout the project.This process I want to do dynamically to checkout multiple projects. I am new user of maven ,Pleases help me out

how to checkout the Project from cvs using Maven2.0.7

2008-03-18 Thread Sowmya . R
Hi, I am using maven to checkout the project from cvs.I want to checkout from CVS, for that i want it should ask for CVS user id and password from the user in command line to connect to cvs for checkout. And I also want to do the checkout for the different projects module that are present in

Re: SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread Guillaume Lederrey
Thank you for your help ... I didnt see your post earlier. (too much traffic for me on this mailing-list). Did you find a clean solution to the problem ? Looking at your mail (http://www.nabble.com/Release-plug-in-fails-to-add-remove-release-pom.xml-in-CVS-to14721158s177.html) it seems that the

RE: SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread PARINI, MARY KAY [AG/1000]
I ran into this same problem (see my posting on 1/9/08). It only occurs when generateReleasePoms is true. If you look at the debug output, it does attempt to do a "cvs add" on release-pom.xml...however for some reason the add doesn't happen. It works okay when generateRelea

SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread Guillaume Lederrey
0-beta-7 true true When running, I get the following error. It seems to me that the release plugin (or the SCM plugin) "forgot" to run a "cvs add". How can I tell them to do the add before the commit ? Or didnt I understand the problem right ? Caused by: org.

Re: CVS and Branches

2008-01-14 Thread Guillaume Lederrey
ROTECTED]> wrote: > I'm still trying to debug my connection problem. Maybe it doesnt have > anything to do with the CVS branch ... > > I tried to use the SCM plugin directly to see if a more direct path to > the error could give me an idea. I get the following : > > **

Re: CVS and Branches

2008-01-14 Thread Guillaume Lederrey
I'm still trying to debug my connection problem. Maybe it doesnt have anything to do with the CVS branch ... I tried to use the SCM plugin directly to see if a more direct path to the error could give me an idea. I get the following : ** scm:validate [INFO] [scm:validate] [INFO] connecti

CVS and Branches

2008-01-10 Thread Guillaume Lederrey
Hello ! I have a really dumb question, but i cant seem to find the answer. I'm more used to SVN and I am a bit lost with branches in CVS ... How do you configure in a pom so that it points to a CVS branch ? I thought I should use , but it doesnt seem to work : scm:cvs:pserver:@server:

Release plug-in fails to add/remove release-pom.xml in CVS

2008-01-09 Thread PARINI, MARY KAY [AG/1000]
I'm trying to use the release plug-in on a very simple multi-module project but the plug-in seems to be having problems adding/removing the release-pom.xml file for parent to CVS. My project structure looks like this (minus the source files)... sample/ pom.xml sample-s

Re: CVS files being packaged in WAR

2008-01-03 Thread Stephane Nicoll
Upgrade to 2.0.2. This bug is fixed for over a year. Stéphane On Jan 1, 2008 1:59 PM, amit kumar <[EMAIL PROTECTED]> wrote: > Hi, > I am facing this problem of getting CVS files packaged in the WAR build from > maven. I am overriding the maven's default directory layout. Be

Re: CVS files being packaged in WAR

2008-01-02 Thread Wayne Fay
ndows? Or are > they some sort of regular expression, because in my case CVS folder is there > inside every folder not just one directory ( The project directory is a CVS > checked out directory). > > Regards, > Amit > > On Jan 3, 2008 1:01 AM, Lee Meador <[EMAIL PROTECTED

Re: CVS files being packaged in WAR

2008-01-02 Thread amit kumar
What do the stars represent here? Is it same as ../ in linux/windows? Or are they some sort of regular expression, because in my case CVS folder is there inside every folder not just one directory ( The project directory is a CVS checked out directory). Regards, Amit On Jan 3, 2008 1:01 AM, Lee

Re: CVS files being packaged in WAR

2008-01-02 Thread Lee Meador
Try **/CVS/**/*.* or some similar set of stars. -- Lee On Jan 2, 2008 3:45 AM, amit kumar <[EMAIL PROTECTED]> wrote: > I want to exclude this CVS Folder present in every folder inside > . > > On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote: > > >

Re: CVS files being packaged in WAR

2008-01-02 Thread amit kumar
I want to exclude this CVS Folder present in every folder inside . On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote: > Can I exclude a directory as such? > > > On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote: > > > Hi, > > I am f

  1   2   3   4   5   6   7   8   9   10   >