[Fwd: [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository]

2005-08-02 Thread Nicolas De Loof




Sujet:  [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository
Date:   Mon, 01 Aug 2005 23:24:02 +0100
De: robert burrell donkin [EMAIL PROTECTED]
Répondre à: Maven Users List users@maven.apache.org
Pour:   Jakarta Commons Users List commons-user@jakarta.apache.org
Copie:  users@maven.apache.org, announcements@jakarta.apache.org



For many months, the Apache java repository has contained an unofficial
snapshot named commons-cli-1.0 rather than the official 1.0 release.
This jar has been mirrored to ibiblio and made available through Maven
as commons-cli-1.0. I'd like to extend apologies to you all on behalf of
the Jakarta team for this mistake. Sorry.

The existing jar has now been replaced by the official 1.0 release.
(This change may take several hours to work it's way through to the
mirrors.) Maven users who use commons-cli directly or indirectly may be
effected by this change. It is recommended that maven users should wait
24 hours (to allow the mirrors to sync) and then delete the version of
commons-cli in their local repository. They should then rebuild and
retest their code. It is recommended that all who can should switch to
use the official release.

There is a small risk that some code may be broken by this change.
However, is no reason to suspect that the original jar has been tampered
with: it is just wrongly named. For those who require it, it is
available as commons-cli-20040117.00 from ibiblio
(http://www.ibiblio.org/maven/commons-cli/jars/commons-cli-20040117.00.jar).
 Some users may need to update their project.xml to use this version (rather 
than the official release).

Please direct any questions to the user list at Jakarta Commons
(http://jakarta.apache.org/site/mail.html).

Robert




This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


signature.asc
Description: PGP signature
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Changelog returns 0 entries

2005-08-02 Thread Jan Tanis

Hello,

I recently started using Maven. I want it to autogenerate reports on our
repositories. I installend Maven 1.0.2. Brett told me to upgrade the
changelog plugin, so I did. It does call the CVS server but it will
alway return 0 entries. When I manual run the log with the following
command - C:\coat\workspace\cocoscvs log -d 2005-07-032005-08-03 it
returns 100dreds of entries.
Following is a part of the debug output of -
C:\coat\workspace\cocosmaven -X maven-changelog-plugin:report

maven-changelog-plugin:report:
   [echo] Generating the changelog report
Executing CVS command: log -d 2005-07-032005-08-03
ChangeSet between 2005-07-03 and 2005-08-03: 0 entries
attaining goal build:end
popping off [EMAIL PROTECTED] for
[EMAIL PROTECTED] in
maven-xdoc-plugin:maven-xdoc-plugin
popping off [EMAIL PROTECTED] for
[EMAIL PROTECTED] in
maven-pom-plugin:maven-pom-plugin
popping off [EMAIL PROTECTED] for
[EMAIL PROTECTED] in
maven-changelog-plugin:maven-changelog-plugin
popping off [EMAIL PROTECTED] for
[EMAIL PROTECTED] in
maven-artifact-plugin:maven-artifact-plugin
popping off [EMAIL PROTECTED] for
[EMAIL PROTECTED] in cocos:cocos
BUILD SUCCESSFUL
Final Memory: 3M/5M
Total time: 3 seconds
Finished at: Tue Aug 02 08:45:53 CEST 2005

--
Met Vriendelijke Groet/Kindest Regards
Jan Tanis (mailto:[EMAIL PROTECTED])
COAS The Netherlands



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [m2] Questions About Aggregating Documentation for Multiple Projects

2005-08-02 Thread Yann Le Du
Hi Bob,

Since I've been struggling with the same kind of issue, I can give you some
hints, but maybe the Maven team will give some precisions :)


1) To define correct inheritance between two projects P (parent) and M
(module), you need two things :
  * in M POM, add a parent pointing to P
  * in P POM modules, add a module pointing yo M
(see http://maven.apache.org/maven2/maven-model/maven.html for details)

In your case, you would have :
  * P = top-level / M = mid-level
then :
  * P = mid-level / M = individual
... just link correctly

Then, if you launch m2 install from your top-level project, it will :
  * install your top-level POM (no matter whether it produces artifacts or not)
  * parse the mid-level POMs and install them (no matter blah blah blah...)
  * parse the individual POMs, install them, and install the artifacts


2) An issue is in progress, see http://jira.codehaus.org/browse/MNG-661

Then you will just have to launch m2 site:site on your top-level project, it
will produce all the documentation tree (which it already does), with the links
between parent and modules.


3) Seems correct to me. In my case, I have only a two-level structure, but this
should work with three or more...


Hope this helps a bit,

Yann


--- Allison, Bob [EMAIL PROTECTED] a écrit :

 I am looking into Maven 2 to try to figure out how to reconfigure our
 current build environment when we upgrade from v1.0.2.  Our software
 product consists of a number of web applications, portlets, EJBs, and
 other jar files.  Out current build tree is set up as follows:
 
 -- The top directory contains a project.xml file which contains
 product-wide information such as CVS location and a maven.xml file with
 a couple goals described below
 
 -- A number of mid-level directories are in the top directory, one for
 each type of artifact (jar, ejb, web application, ...).  Each of these
 directories has a project.xml file which inherits from the top level and
 a maven.xml file which defines standardized goals which detail the steps
 to work with the artifact (for example, the web application's install
 goal attains goal war:install while the jar's install goal attains
 goal jar:install) and any goals which are unique to the artifact type
 (for example, the web application has load and unload goals which
 load and unload the application from the server).
 
 -- One or more individual project directories are in each mid-level
 directory.  Each of these projects is an independent project which
 inherits from the mid-level project.
 
 
 The two goals mentioned above in the top level are designed to build a
 complete documentation site and build a set of deployment artifacts.  I
 am mostly concerned right now with the documentation.  In the current
 setup, the documentation for the top level project contains navigation
 entries for each mid-level project; each mid-level project's
 documentation contains navigation entries for the individual projects
 which create artifacts.  The top-level documentation contains
 product-wide development information such as how to install tools such
 as Maven.  Each of the mid-level project's documentation contains
 information such as the goals specific to the type of artifact.
 
 
 My questions:
 
 1) Since the top-level and mid-level projects do not create any
 artifacts, their POMs are not installed into the local repository.  How
 do I define the inheritance for the individual projects so that they
 inherit the proper information from the two upper levels?
 
 2) How do I get the generated site to have the nested navigation
 (top-level has links to mid-level which has links to individual
 projects)?  Alternatively, can I have the top level have links directly
 to the mid-level documentation as well as the individual projects?
 
 3) For the purposes of inheritance and building documentation, should
 the build tree be flattened out to make the individual projects
 subdirectories of the top level or is it better to keep things the way
 they are at present?
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 







___ 
Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger 
Téléchargez cette version sur http://fr.messenger.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven as service

2005-08-02 Thread Chedly GUERFALI
Thank you very much David,
but where do you pass the configfile parameter to the cruisecontrol service
?
Do you launch a script containing the cruisecontrol -configfile XXX chain?

Chedly

-Message d'origine-
De : David Jackman [mailto:[EMAIL PROTECTED]
Envoye : lundi 1 aout 2005 18:45
A : Maven Users List
Objet : RE: Maven as service


The account user name and password that the service runs under isn't set
on the command line for the executable, but in the settings for the
service (in the service administration).

The script I used to install the CC service looks like this:
--
set LIBDIR=%CCDIR%\lib
set DISTDIR=%CCDIR%\dist

if %CURRENT%== set CURRENT=%CD%

set
CRUISE_PATH=%DISTDIR%\cruisecontrol.jar;%LIBDIR%\log4j.jar;%LIBDIR%\jdom
.jar;%LIBDIR%\ant\ant.jar;%LIBDIR%\xerces.jar;%LIBDIR%\mail.jar;%LIBDIR%
\ant\ant-junit.jar;%LIBDIR%\junit.jar;%LIBDIR%\activation.jar;%LIBDIR%\m
x4j.jar;.

CruiseControlService.exe -install Cruise Control
%JAVA_HOME%\jre\bin\hotspot\jvm.dll -Djava.class.path=%CRUISE_PATH%
-start CruiseControl -params %* -out %CURRENT%\service_out.log -err
%CURRENT%\service_err.log -current %CURRENT%
---
With CCDIR == my CruiseControl install directory, and CURRENT == the
current directory for when CC runs.

Hope this helps.
..David..


-Original Message-
From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 8:45 AM
To: Maven Users List
Subject: RE: Maven as service

Thank you David for this help,
I tried the JavaService Software and I noticed that it doesn't accept
much parameters like service account and service password. Would you
giging me in examlple your script for launching CC and Maven.
Thank you.

Chedly

-Message d'origine-
De : David Jackman [mailto:[EMAIL PROTECTED]
Envoye : lundi 1 aout 2005 15:09
A : Maven Users List
Objet : RE: Maven as service


I'm also running CruiseControl with Maven in this way, but haven't seen
this problem at all.  I've never had a problem when logging out of the
machine.  I'm using something I downloaded some time ago called
JavaService.exe (Java NT Service Adaptor); I'm on version 1.2.3.0.



-Original Message-
From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 3:16 AM
To: MAVEN
Subject: Maven as service

Hello All,
I am using CruiseControl as a service with the Java Wrapper Service.
CruiseControl launches the Maven goals and everything works ok. The
problem comes when somebody using the computer logs out. the JVM used by
CruiseControl igores the log out, but the JVM used by Maven stoppes
because of the system listener. I tried thus to set Maven as a service,
but it doesn't work. Does anyone has the same problem which could help?
Thanks in advance.

Chedly

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Project website

2005-08-02 Thread Jeffrey Mutonho
It turns out that its a unix permissions issue.Thanx for your response

jeff mutonho

On 8/1/05, Thomas Van de Velde [EMAIL PROTECTED] wrote:
 This might be because your web server is running while you are building the
 site.  You need to stop the web server.
 
 
 On 8/1/05, Jeffrey Mutonho  [EMAIL PROTECTED] wrote:
  
  Hi guys
  
  My project structure is a as follows: 
  
FooProject
   |_FooProjectLogging
   |_FooProjectPersistence
   |_FooProjectBusiness
  
  where 
 FooProjectLogging,FooProjectLogging,FooProjectBusiness
 are
  individual sub-projects
  
  I wish to create a project website and have respectively configured
  the indivual sub-projects' project.xml files  as shown below:
  
 
 siteDirectory/usr/local/apache2/htdocs/FooProject/FooProjectLogging/siteDirectory
  
 
 siteDirectory/usr/local/apache2/htdocs/FooProject/FooProjectPersistence/siteDirectory
  
 
 siteDirectory/usr/local/apache2/htdocs/FooProject/FooProjectBusiness/siteDirectory
  
  When run maven to do the build , it fails with the message :
  
  Unable to obtain goal [exact-build-all] -- 
 
 /home/jmu016/.maven/cache/maven-site-plugin-1.5.1/plugin.jelly:169:40:
  copy Failed to copy
 
 /home/jmu016/maven-1.0/projects_main/projects/FooProject/FooProjectLogging/target/docs/images/external.png
  to
 /usr/local/apache2/htdocs/FooProject/FooProjectLogging/images/external.png
  due to
 /usr/local/apache2/htdocs/FooProject/FooProjectLogging/images/external.png
  (No such file or directory)
  
  I did create the directory FooProject under
  /usr/local/apache2/htdocs.Does this mean I have to create the folders 
  FooProjectLogging, FooProjectPersistence , FooProjectBusiness  and
  their sub-folders and their sub-folders , etc ...manually?How do I do
  this?
  
  Thanx
  
  Jeff Mutonho
  Cape Town
  South Africa
  
 
 -
  To unsubscribe, e-mail:
 [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Cobertura and Aspectj

2005-08-02 Thread stéphane bouchet

Hi,
 i am trying to use cobertura with aspectj but it doesn't work :

It seems that cobertura canot find the aspectJ libraries ?
I use JDK 5.0, Win2k, Maven 1.0.2, last cobertura and aspectj plugins

Thanks


cobertura:on:
[mkdir] Created dir: C:\eclipse\workspace\CASTOR-core\target\docs\cobertura
[mkdir] Created dir: 
C:\eclipse\workspace\CASTOR-core\target\cobertura\classes
instrumenting the class-files...
Cobertura cvs
The copyright for this program is retained by its contributors
See the included COPYRIGHT file for a complete list of contributors
Cobertura is licensed under the GNU General Public License
Cobertura comes with ABSOLUTELY NO WARRANTY
instrumenting 138 classes to 
C:\eclipse\workspace\CASTOR-core\target\cobertura\classes
[cobertura-instrument] Exception in thread main 
java.lang.IllegalArgumentException: Unknown attribute type: 
org.aspectj.weaver.MethodDeclarationLineNumber

[cobertura-instrument]  at org.objectweb.asm.Attribute.a(Unknown Source)
[cobertura-instrument]  at org.objectweb.asm.MethodWriter.a(Unknown 
Source)
[cobertura-instrument] 	at 
org.objectweb.asm.ClassWriter.toByteArray(Unknown Source)
[cobertura-instrument] 	at 
net.sourceforge.cobertura.instrument.Main.addInstrumentation(Main.java:174)
[cobertura-instrument] 	at 
net.sourceforge.cobertura.instrument.Main.addInstrumentation(Main.java:208)
[cobertura-instrument] 	at 
net.sourceforge.cobertura.instrument.Main.parseArguments(Main.java:245)
[cobertura-instrument] 	at 
net.sourceforge.cobertura.instrument.Main.main(Main.java:304)
org.apache.commons.jelly.JellyTagException: C:\Documents and 
Settings\sbouchet\.maven\cache\maven-cobertura-plugin-1.1\plugin.jelly:125:115: 
ant:cobertura-instrument Error instrumenting classes. See messages above.
org.apache.commons.jelly.JellyTagException: C:\Documents and 
Settings\sbouchet\.maven\cache\maven-cobertura-plugin-1.1\plugin.jelly:144:35: 
ant:fail org.apache.commons.jelly.JellyTagException: C:\Documents and 
Settings\sbouchet\.maven\cache\maven-cobertura-plugin-1.1\plugin.jelly:125:115: 
ant:cobertura-instrument Error instrumenting classes. See messages above.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven as service

2005-08-02 Thread Stephane Nicoll
See doco:
http://confluence.public.thoughtworks.org/display/CC/RunningCruiseControlAsaWindowsService

Cheers,
Stéphane

On 8/2/05, Chedly GUERFALI [EMAIL PROTECTED] wrote:
 Thank you very much David,
 but where do you pass the configfile parameter to the cruisecontrol service
 ?
 Do you launch a script containing the cruisecontrol -configfile XXX chain?
 
 Chedly
 
 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 18:45
 A : Maven Users List
 Objet : RE: Maven as service
 
 
 The account user name and password that the service runs under isn't set
 on the command line for the executable, but in the settings for the
 service (in the service administration).
 
 The script I used to install the CC service looks like this:
 --
 set LIBDIR=%CCDIR%\lib
 set DISTDIR=%CCDIR%\dist
 
 if %CURRENT%== set CURRENT=%CD%
 
 set
 CRUISE_PATH=%DISTDIR%\cruisecontrol.jar;%LIBDIR%\log4j.jar;%LIBDIR%\jdom
 .jar;%LIBDIR%\ant\ant.jar;%LIBDIR%\xerces.jar;%LIBDIR%\mail.jar;%LIBDIR%
 \ant\ant-junit.jar;%LIBDIR%\junit.jar;%LIBDIR%\activation.jar;%LIBDIR%\m
 x4j.jar;.
 
 CruiseControlService.exe -install Cruise Control
 %JAVA_HOME%\jre\bin\hotspot\jvm.dll -Djava.class.path=%CRUISE_PATH%
 -start CruiseControl -params %* -out %CURRENT%\service_out.log -err
 %CURRENT%\service_err.log -current %CURRENT%
 ---
 With CCDIR == my CruiseControl install directory, and CURRENT == the
 current directory for when CC runs.
 
 Hope this helps.
 ..David..
 
 
 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 8:45 AM
 To: Maven Users List
 Subject: RE: Maven as service
 
 Thank you David for this help,
 I tried the JavaService Software and I noticed that it doesn't accept
 much parameters like service account and service password. Would you
 giging me in examlple your script for launching CC and Maven.
 Thank you.
 
 Chedly
 
 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 15:09
 A : Maven Users List
 Objet : RE: Maven as service
 
 
 I'm also running CruiseControl with Maven in this way, but haven't seen
 this problem at all.  I've never had a problem when logging out of the
 machine.  I'm using something I downloaded some time ago called
 JavaService.exe (Java NT Service Adaptor); I'm on version 1.2.3.0.
 
 
 
 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:16 AM
 To: MAVEN
 Subject: Maven as service
 
 Hello All,
 I am using CruiseControl as a service with the Java Wrapper Service.
 CruiseControl launches the Maven goals and everything works ok. The
 problem comes when somebody using the computer logs out. the JVM used by
 CruiseControl igores the log out, but the JVM used by Maven stoppes
 because of the system listener. I tried thus to set Maven as a service,
 but it doesn't work. Does anyone has the same problem which could help?
 Thanks in advance.
 
 Chedly
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


-- 
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



CVS repository

2005-08-02 Thread NIRMALA Manivasagam
Hi,

How should i connect to remote repository using CVS

Thanks,
Nirmala
Confidentiality Statement:

This message is intended only for the individual or entity to which it is 
addressed. It may contain privileged, confidential information which is exempt 
from disclosure under applicable laws. If you are not the intended recipient,
please note that you are strictly prohibited from disseminating or distributing
this information (other than to the intended recipient) or copying this 
information. 
If you have received this communication in error, please notify us immediately 
by return email.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: CVS repository

2005-08-02 Thread Jan Tanis

Hi,

For using remote checkout (maven scm:checkout-project) I setted this in 
my properties file:


maven.scm.method=cvs
maven.scm.cvs.module=$modulename
maven.scm.cvs.root=:pserver:[EMAIL PROTECTED]:/home/cvspublic
maven.scm.checkout.dir=.

For changelogging I use the following tag in my project.xml file:
repository
 
connectionscm:cvs:pserver:[EMAIL PROTECTED]:/home/cvspublic:$modulename/connection

 urlhttp://viewcvs.coas.com/cgi/viewcvs.cgi/$modulename/url
/repository

Good luck!

NIRMALA Manivasagam wrote:


Hi,

How should i connect to remote repository using CVS

Thanks,
Nirmala
Confidentiality Statement:

This message is intended only for the individual or entity to which it is 
addressed. It may contain privileged, confidential information which is exempt 
from disclosure under applicable laws. If you are not the intended recipient,

please note that you are strictly prohibited from disseminating or distributing
this information (other than to the intended recipient) or copying this information. 
If you have received this communication in error, please notify us immediately 
by return email.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 




--
Met Vriendelijke Groet/Kindest Regards
Jan Tanis (mailto:[EMAIL PROTECTED])
COAS The Netherlands 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Remote Repository

2005-08-02 Thread NIRMALA Manivasagam
Hi,

Can any one tell me why it is comingeventhough i created a repository in 
remote machine...


D:\Maven 1.0.2\bincvs -d :sspi:[EMAIL PROTECTED]:2401:/cvsnt/source login
Logging in to :sspi:[EMAIL PROTECTED]:2401:/cvsnt/source
CVS password: 
cvs [login aborted]: /cvsnt/source: no such repository

Thanks,
Nirmala
Confidentiality Statement:

This message is intended only for the individual or entity to which it is 
addressed. It may contain privileged, confidential information which is exempt 
from disclosure under applicable laws. If you are not the intended recipient, 
please note that you are strictly prohibited from disseminating or distributing 
this information (other than to the intended recipient) or copying this 
information. If you have received this communication in error, please notify us 
immediately by return email.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



maven with VSS

2005-08-02 Thread Bahaa Nasrallah
Hi,
I need to generate changelog, file activity and developer activity
reports based on VSS as SCM.
I see that those plugins currently support VSS, i need to know how to
let maven know about the VSS repository.
If the repository was Subversion or CVS it is quite obvious how to
specify the repository in the project descriptor, my question is how
specify the VSS repository?

Thanks,
Bahaa

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven with VSS

2005-08-02 Thread Vincent Siveton
Hi,


Not tested but I think you should define your VSS repository as follows:
scm:vss:\\hostname\Vss\:username,password:/SourceRoot/Project

Cheers,

Vincent

2005/8/2, Bahaa Nasrallah [EMAIL PROTECTED]:
 Hi,
 I need to generate changelog, file activity and developer activity
 reports based on VSS as SCM.
 I see that those plugins currently support VSS, i need to know how to
 let maven know about the VSS repository.
 If the repository was Subversion or CVS it is quite obvious how to
 specify the repository in the project descriptor, my question is how
 specify the VSS repository?
 
 Thanks,
 Bahaa
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven as service

2005-08-02 Thread David Jackman
Yes.  That was the page I used to get CC running as a service so long ago (it's 
been so long I forgot where it was).

In the script I included the -params %* part is where the config file comes 
gets set.  Everything after -params is used as command line parameters when 
starting CC.  %* is a variable for DOS batch files that gets replaced with all 
of the batch file parameters.  So when you run my script with the parameters 
-configfile name [-port port] (as the document says), these parameters get 
included there.

..David..

-Original Message-
From: Stephane Nicoll [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 3:55 AM
To: Maven Users List
Subject: Re: Maven as service

See doco:
http://confluence.public.thoughtworks.org/display/CC/RunningCruiseControlAsaWindowsService

Cheers,
Stéphane

On 8/2/05, Chedly GUERFALI [EMAIL PROTECTED] wrote:
 Thank you very much David,
 but where do you pass the configfile parameter to the cruisecontrol 
 service ?
 Do you launch a script containing the cruisecontrol -configfile XXX chain?
 
 Chedly
 
 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 18:45
 A : Maven Users List
 Objet : RE: Maven as service
 
 
 The account user name and password that the service runs under isn't 
 set on the command line for the executable, but in the settings for 
 the service (in the service administration).
 
 The script I used to install the CC service looks like this:
 --
 set LIBDIR=%CCDIR%\lib
 set DISTDIR=%CCDIR%\dist
 
 if %CURRENT%== set CURRENT=%CD%
 
 set
 CRUISE_PATH=%DISTDIR%\cruisecontrol.jar;%LIBDIR%\log4j.jar;%LIBDIR%\jd
 om 
 .jar;%LIBDIR%\ant\ant.jar;%LIBDIR%\xerces.jar;%LIBDIR%\mail.jar;%LIBDI
 R% 
 \ant\ant-junit.jar;%LIBDIR%\junit.jar;%LIBDIR%\activation.jar;%LIBDIR%
 \m
 x4j.jar;.
 
 CruiseControlService.exe -install Cruise Control
 %JAVA_HOME%\jre\bin\hotspot\jvm.dll -Djava.class.path=%CRUISE_PATH%
 -start CruiseControl -params %* -out %CURRENT%\service_out.log -err 
 %CURRENT%\service_err.log -current %CURRENT%
 ---
 With CCDIR == my CruiseControl install directory, and CURRENT == the 
 current directory for when CC runs.
 
 Hope this helps.
 ..David..
 
 
 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 8:45 AM
 To: Maven Users List
 Subject: RE: Maven as service
 
 Thank you David for this help,
 I tried the JavaService Software and I noticed that it doesn't accept 
 much parameters like service account and service password. Would you 
 giging me in examlple your script for launching CC and Maven.
 Thank you.
 
 Chedly
 
 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 15:09
 A : Maven Users List
 Objet : RE: Maven as service
 
 
 I'm also running CruiseControl with Maven in this way, but haven't 
 seen this problem at all.  I've never had a problem when logging out 
 of the machine.  I'm using something I downloaded some time ago called 
 JavaService.exe (Java NT Service Adaptor); I'm on version 1.2.3.0.
 
 
 
 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:16 AM
 To: MAVEN
 Subject: Maven as service
 
 Hello All,
 I am using CruiseControl as a service with the Java Wrapper Service.
 CruiseControl launches the Maven goals and everything works ok. The 
 problem comes when somebody using the computer logs out. the JVM used 
 by CruiseControl igores the log out, but the JVM used by Maven stoppes 
 because of the system listener. I tried thus to set Maven as a 
 service, but it doesn't work. Does anyone has the same problem which could 
 help?
 Thanks in advance.
 
 Chedly
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [Fwd: [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository]

2005-08-02 Thread Arik Kfir
Hi,

I know it (was) a snapshot release - but could you perhaps summarize
the differences between these two versions? I'd look at the change log
but I assume it does not list changes between snapshots ;-)


On 8/2/05, Nicolas De Loof [EMAIL PROTECTED] wrote:
 
 
 
 Sujet:  [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository
 Date:   Mon, 01 Aug 2005 23:24:02 +0100
 De: robert burrell donkin [EMAIL PROTECTED]
 Répondre à: Maven Users List users@maven.apache.org
 Pour:   Jakarta Commons Users List commons-user@jakarta.apache.org
 Copie:  users@maven.apache.org, announcements@jakarta.apache.org
 
 
 
 For many months, the Apache java repository has contained an unofficial
 snapshot named commons-cli-1.0 rather than the official 1.0 release.
 This jar has been mirrored to ibiblio and made available through Maven
 as commons-cli-1.0. I'd like to extend apologies to you all on behalf of
 the Jakarta team for this mistake. Sorry.
 
 The existing jar has now been replaced by the official 1.0 release.
 (This change may take several hours to work it's way through to the
 mirrors.) Maven users who use commons-cli directly or indirectly may be
 effected by this change. It is recommended that maven users should wait
 24 hours (to allow the mirrors to sync) and then delete the version of
 commons-cli in their local repository. They should then rebuild and
 retest their code. It is recommended that all who can should switch to
 use the official release.
 
 There is a small risk that some code may be broken by this change.
 However, is no reason to suspect that the original jar has been tampered
 with: it is just wrongly named. For those who require it, it is
 available as commons-cli-20040117.00 from ibiblio
 (http://www.ibiblio.org/maven/commons-cli/jars/commons-cli-20040117.00.jar).
  Some users may need to update their project.xml to use this version (rather 
 than the official release).
 
 Please direct any questions to the user list at Jakarta Commons
 (http://jakarta.apache.org/site/mail.html).
 
 Robert
 
 
 
 
 This message contains information that may be privileged or confidential and 
 is the property of the Capgemini Group. It is intended only for the person to 
 whom it is addressed. If you are not the intended recipient,  you are not 
 authorized to read, print, retain, copy, disseminate,  distribute, or use 
 this message or any part thereof. If you receive this  message in error, 
 please notify the sender immediately and delete all  copies of this message.
 
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (GNU/Linux)
 
 iD8DBQBC7qEC1TNOdbExPeIRAhb6AKC5wlBX4yT93O/0UWsc9DAgTpudyACgveFo
 eCfm+Jv7e+xfv/Oad+cfKaw=
 =qG6n
 -END PGP SIGNATURE-
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Create instructions for Continuous integration for dummies anyone?

2005-08-02 Thread Mayorgaadame, Alex [IT]
Anyone that can tell me where the wiki is, so I can star logging my progress. I 
believe that this can be valuable for other total dummies like me. Given that 
I'll be reading this over and over I would like to contribute with an Spanish 
translation, any insights on how to do it would be appreciated too.

Thanks
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Mayorgaadame, Alex [IT] 
Sent: Monday, August 01, 2005 5:47 PM
To: Maven Users List; Jamie Bisotti
Subject: RE: Continuous integration for dummies anyone?


Thanks on your tips. CruiseControl Wiki was down almost all day and I'm yet not 
able to found the Maven+CruiseControl+CVS manual, maybe I can contribute there. 
I'll try to get this working tomorrow. Looks to be not very hard.

Thanks on being so nice to newbies here
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Jamie Bisotti [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 12:00 PM
To: Maven Users List
Subject: Re: Continuous integration for dummies anyone?


On 8/1/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED] wrote:
 Hello all Maven guys and gals:
 
 I'm a total newbie to this stuff, but I've got an assignment to set up a 
 Maven + Cruise Control + CVS thing for a Hello world! application.
 
 Can anybody walk me trough or point me to a comprehensive guide?
 
 I haven't been able to find one yet. I promise to log everything I learn to 
 my blog or to any wiki that would help new users of this great product.
 
 Regards
 Alex Mayorga Adame
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

Check out the Wiki on the CruiseControl site; I believe it has a
Maven/CC/CVS scenario.
Basically, get your project building with Maven is the first/most
important step.  After that, it's just a matter of setting up CC's
config.xml (fairly simple/straight forward), and you should be off and
running.  I'd suggest updating to the latest
maven-cruisecontrol-plugin and using it to generate the initial
config.xml; then you can tweak that as you get more familiar with
things.


-- 
Jamie Bisotti
Software Engineer
Lexmark International, Inc.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [clover] Release a clover plugin (1.10?) for Clover 1.3.9?

2005-08-02 Thread Gary Gregory
Does an [ann] get posted here when plugins are released? Should I watch another 
list?

Thanks,
Gary

 -Original Message-
 From: Vincent Massol [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 1:29 AM
 To: 'Maven Users List'
 Subject: RE: [clover] Release a clover plugin (1.10?) for Clover 1.3.9?
 
 Hi Gary,
 
 I'll try to release it sometime this week.
 
 Thanks
 -Vincent
 
  -Original Message-
  From: Gary Gregory [mailto:[EMAIL PROTECTED]
  Sent: lundi 1 août 2005 01:24
  To: users@maven.apache.org
  Subject: [clover] Release a clover plugin (1.10?) for Clover 1.3.9?
 
  Hello:
 
  Can we get a released version of the clover plugin (1.10?) for Clover
  1.3.9?
 
  Thanks,
  Gary
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Create instructions for Continuous integration for dummies anyone?

2005-08-02 Thread David Jackman
The official CC wiki (linked to from the CC home page) is at
http://confluence.public.thoughtworks.org/display/CC/Home 

-Original Message-
From: Mayorgaadame, Alex [IT] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 9:43 AM
To: Maven Users List
Subject: Create instructions for Continuous integration for dummies
anyone?

Anyone that can tell me where the wiki is, so I can star logging my
progress. I believe that this can be valuable for other total dummies
like me. Given that I'll be reading this over and over I would like to
contribute with an Spanish translation, any insights on how to do it
would be appreciated too.

Thanks
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Mayorgaadame, Alex [IT]
Sent: Monday, August 01, 2005 5:47 PM
To: Maven Users List; Jamie Bisotti
Subject: RE: Continuous integration for dummies anyone?


Thanks on your tips. CruiseControl Wiki was down almost all day and I'm
yet not able to found the Maven+CruiseControl+CVS manual, maybe I can
contribute there. I'll try to get this working tomorrow. Looks to be not
very hard.

Thanks on being so nice to newbies here
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Jamie Bisotti [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 12:00 PM
To: Maven Users List
Subject: Re: Continuous integration for dummies anyone?


On 8/1/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED]
wrote:
 Hello all Maven guys and gals:
 
 I'm a total newbie to this stuff, but I've got an assignment to set up
a Maven + Cruise Control + CVS thing for a Hello world! application.
 
 Can anybody walk me trough or point me to a comprehensive guide?
 
 I haven't been able to find one yet. I promise to log everything I
learn to my blog or to any wiki that would help new users of this great
product.
 
 Regards
 Alex Mayorga Adame
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

Check out the Wiki on the CruiseControl site; I believe it has a
Maven/CC/CVS scenario.
Basically, get your project building with Maven is the first/most
important step.  After that, it's just a matter of setting up CC's
config.xml (fairly simple/straight forward), and you should be off and
running.  I'd suggest updating to the latest
maven-cruisecontrol-plugin and using it to generate the initial
config.xml; then you can tweak that as you get more familiar with
things.


-- 
Jamie Bisotti
Software Engineer
Lexmark International, Inc.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Create instructions for Continuous integration for dummies?

2005-08-02 Thread Mayorgaadame, Alex [IT]
Is there a better place to do this? I'm thinking to do a Baby steps guide to 
setup maven in Windows. Latter on I'll do it on Solaris. I need to log my work 
anyway so I believe it'll be nice if this can be helpful for newbies to come =)

Thanks
Alex

-Original Message-
From: David Jackman [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 02, 2005 12:01 PM
To: Maven Users List
Subject: RE: Create instructions for Continuous integration for dummies
anyone?


The official CC wiki (linked to from the CC home page) is at
http://confluence.public.thoughtworks.org/display/CC/Home 

-Original Message-
From: Mayorgaadame, Alex [IT] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 9:43 AM
To: Maven Users List
Subject: Create instructions for Continuous integration for dummies
anyone?

Anyone that can tell me where the wiki is, so I can star logging my
progress. I believe that this can be valuable for other total dummies
like me. Given that I'll be reading this over and over I would like to
contribute with an Spanish translation, any insights on how to do it
would be appreciated too.

Thanks
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Mayorgaadame, Alex [IT]
Sent: Monday, August 01, 2005 5:47 PM
To: Maven Users List; Jamie Bisotti
Subject: RE: Continuous integration for dummies anyone?


Thanks on your tips. CruiseControl Wiki was down almost all day and I'm
yet not able to found the Maven+CruiseControl+CVS manual, maybe I can
contribute there. I'll try to get this working tomorrow. Looks to be not
very hard.

Thanks on being so nice to newbies here
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Jamie Bisotti [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 12:00 PM
To: Maven Users List
Subject: Re: Continuous integration for dummies anyone?


On 8/1/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED]
wrote:
 Hello all Maven guys and gals:
 
 I'm a total newbie to this stuff, but I've got an assignment to set up
a Maven + Cruise Control + CVS thing for a Hello world! application.
 
 Can anybody walk me trough or point me to a comprehensive guide?
 
 I haven't been able to find one yet. I promise to log everything I
learn to my blog or to any wiki that would help new users of this great
product.
 
 Regards
 Alex Mayorga Adame
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

Check out the Wiki on the CruiseControl site; I believe it has a
Maven/CC/CVS scenario.
Basically, get your project building with Maven is the first/most
important step.  After that, it's just a matter of setting up CC's
config.xml (fairly simple/straight forward), and you should be off and
running.  I'd suggest updating to the latest
maven-cruisecontrol-plugin and using it to generate the initial
config.xml; then you can tweak that as you get more familiar with
things.


-- 
Jamie Bisotti
Software Engineer
Lexmark International, Inc.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven as service

2005-08-02 Thread Chedly GUERFALI
Thanks for both David and Stephane,
unfortunatly and after trying both solutions, my problem is remaining: the
java process lauched with Maven is interrupted when a user logs out and the
java process lauched by CruiseControl still running.So the entire process is
suddenly stopped at a certain goal then I have the artifactpublisher.
Unbelievable isn't it!!!


Chedly

-Message d'origine-
De : David Jackman [mailto:[EMAIL PROTECTED]
Envoyé : mardi 2 août 2005 16:22
À : Maven Users List
Objet : RE: Maven as service


Yes.  That was the page I used to get CC running as a service so long ago
(it's been so long I forgot where it was).

In the script I included the -params %* part is where the config file comes
gets set.  Everything after -params is used as command line parameters when
starting CC.  %* is a variable for DOS batch files that gets replaced with
all of the batch file parameters.  So when you run my script with the
parameters -configfile name [-port port] (as the document says), these
parameters get included there.

..David..

-Original Message-
From: Stephane Nicoll [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 02, 2005 3:55 AM
To: Maven Users List
Subject: Re: Maven as service

See doco:
http://confluence.public.thoughtworks.org/display/CC/RunningCruiseControlAsa
WindowsService

Cheers,
Stéphane

On 8/2/05, Chedly GUERFALI [EMAIL PROTECTED] wrote:
 Thank you very much David,
 but where do you pass the configfile parameter to the cruisecontrol
 service ?
 Do you launch a script containing the cruisecontrol -configfile XXX
chain?

 Chedly

 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 18:45
 A : Maven Users List
 Objet : RE: Maven as service


 The account user name and password that the service runs under isn't
 set on the command line for the executable, but in the settings for
 the service (in the service administration).

 The script I used to install the CC service looks like this:
 --
 set LIBDIR=%CCDIR%\lib
 set DISTDIR=%CCDIR%\dist

 if %CURRENT%== set CURRENT=%CD%

 set
 CRUISE_PATH=%DISTDIR%\cruisecontrol.jar;%LIBDIR%\log4j.jar;%LIBDIR%\jd
 om
 .jar;%LIBDIR%\ant\ant.jar;%LIBDIR%\xerces.jar;%LIBDIR%\mail.jar;%LIBDI
 R%
 \ant\ant-junit.jar;%LIBDIR%\junit.jar;%LIBDIR%\activation.jar;%LIBDIR%
 \m
 x4j.jar;.

 CruiseControlService.exe -install Cruise Control
 %JAVA_HOME%\jre\bin\hotspot\jvm.dll -Djava.class.path=%CRUISE_PATH%
 -start CruiseControl -params %* -out %CURRENT%\service_out.log -err
 %CURRENT%\service_err.log -current %CURRENT%
 ---
 With CCDIR == my CruiseControl install directory, and CURRENT == the
 current directory for when CC runs.

 Hope this helps.
 ..David..


 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 8:45 AM
 To: Maven Users List
 Subject: RE: Maven as service

 Thank you David for this help,
 I tried the JavaService Software and I noticed that it doesn't accept
 much parameters like service account and service password. Would you
 giging me in examlple your script for launching CC and Maven.
 Thank you.

 Chedly

 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 15:09
 A : Maven Users List
 Objet : RE: Maven as service


 I'm also running CruiseControl with Maven in this way, but haven't
 seen this problem at all.  I've never had a problem when logging out
 of the machine.  I'm using something I downloaded some time ago called
 JavaService.exe (Java NT Service Adaptor); I'm on version 1.2.3.0.



 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:16 AM
 To: MAVEN
 Subject: Maven as service

 Hello All,
 I am using CruiseControl as a service with the Java Wrapper Service.
 CruiseControl launches the Maven goals and everything works ok. The
 problem comes when somebody using the computer logs out. the JVM used
 by CruiseControl igores the log out, but the JVM used by Maven stoppes
 because of the system listener. I tried thus to set Maven as a
 service, but it doesn't work. Does anyone has the same problem which could
help?
 Thanks in advance.

 Chedly

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
.::You're welcome ::.


[m1] Keeping plugins up to date

2005-08-02 Thread Grant Ingersoll
I see from http://maven.apache.org/start/download.html that there is
list of plugins that are to be updated for 1.0.2.

Is there a way to update all installed plugins automatically via one
command?

Thanks,
Grant

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [m1] Keeping plugins up to date

2005-08-02 Thread dan tran
Grant, there is no single maven command to do that, how about put multiple
maven commands ( see the link) into a batch file?

-D

On 8/2/05, Grant Ingersoll [EMAIL PROTECTED] wrote:
 I see from http://maven.apache.org/start/download.html that there is
 list of plugins that are to be updated for 1.0.2.
 
 Is there a way to update all installed plugins automatically via one
 command?
 
 Thanks,
 Grant
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven as service

2005-08-02 Thread David Jackman
Is it possible you have the Allow service to interact with desktop option 
checked in the service properties?  If you do, that could be causing the 
problem. 

-Original Message-
From: Chedly GUERFALI [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 10:35 AM
To: Maven Users List
Subject: RE: Maven as service

Thanks for both David and Stephane,
unfortunatly and after trying both solutions, my problem is remaining: the java 
process lauched with Maven is interrupted when a user logs out and the java 
process lauched by CruiseControl still running.So the entire process is 
suddenly stopped at a certain goal then I have the artifactpublisher.
Unbelievable isn't it!!!


Chedly

-Message d'origine-
De : David Jackman [mailto:[EMAIL PROTECTED]
Envoyé : mardi 2 août 2005 16:22
À : Maven Users List
Objet : RE: Maven as service


Yes.  That was the page I used to get CC running as a service so long ago (it's 
been so long I forgot where it was).

In the script I included the -params %* part is where the config file comes 
gets set.  Everything after -params is used as command line parameters when 
starting CC.  %* is a variable for DOS batch files that gets replaced with all 
of the batch file parameters.  So when you run my script with the parameters 
-configfile name [-port port] (as the document says), these parameters get 
included there.

..David..

-Original Message-
From: Stephane Nicoll [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 02, 2005 3:55 AM
To: Maven Users List
Subject: Re: Maven as service

See doco:
http://confluence.public.thoughtworks.org/display/CC/RunningCruiseControlAsa
WindowsService

Cheers,
Stéphane

On 8/2/05, Chedly GUERFALI [EMAIL PROTECTED] wrote:
 Thank you very much David,
 but where do you pass the configfile parameter to the cruisecontrol 
 service ?
 Do you launch a script containing the cruisecontrol -configfile XXX
chain?

 Chedly

 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 18:45
 A : Maven Users List
 Objet : RE: Maven as service


 The account user name and password that the service runs under isn't 
 set on the command line for the executable, but in the settings for 
 the service (in the service administration).

 The script I used to install the CC service looks like this:
 --
 set LIBDIR=%CCDIR%\lib
 set DISTDIR=%CCDIR%\dist

 if %CURRENT%== set CURRENT=%CD%

 set
 CRUISE_PATH=%DISTDIR%\cruisecontrol.jar;%LIBDIR%\log4j.jar;%LIBDIR%\jd
 om
 .jar;%LIBDIR%\ant\ant.jar;%LIBDIR%\xerces.jar;%LIBDIR%\mail.jar;%LIBDI
 R%
 \ant\ant-junit.jar;%LIBDIR%\junit.jar;%LIBDIR%\activation.jar;%LIBDIR%
 \m
 x4j.jar;.

 CruiseControlService.exe -install Cruise Control
 %JAVA_HOME%\jre\bin\hotspot\jvm.dll -Djava.class.path=%CRUISE_PATH%
 -start CruiseControl -params %* -out %CURRENT%\service_out.log -err 
 %CURRENT%\service_err.log -current %CURRENT%
 ---
 With CCDIR == my CruiseControl install directory, and CURRENT == the 
 current directory for when CC runs.

 Hope this helps.
 ..David..


 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 8:45 AM
 To: Maven Users List
 Subject: RE: Maven as service

 Thank you David for this help,
 I tried the JavaService Software and I noticed that it doesn't accept 
 much parameters like service account and service password. Would you 
 giging me in examlple your script for launching CC and Maven.
 Thank you.

 Chedly

 -Message d'origine-
 De : David Jackman [mailto:[EMAIL PROTECTED]
 Envoye : lundi 1 aout 2005 15:09
 A : Maven Users List
 Objet : RE: Maven as service


 I'm also running CruiseControl with Maven in this way, but haven't 
 seen this problem at all.  I've never had a problem when logging out 
 of the machine.  I'm using something I downloaded some time ago called 
 JavaService.exe (Java NT Service Adaptor); I'm on version 1.2.3.0.



 -Original Message-
 From: Chedly GUERFALI [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:16 AM
 To: MAVEN
 Subject: Maven as service

 Hello All,
 I am using CruiseControl as a service with the Java Wrapper Service.
 CruiseControl launches the Maven goals and everything works ok. The 
 problem comes when somebody using the computer logs out. the JVM used 
 by CruiseControl igores the log out, but the JVM used by Maven stoppes 
 because of the system listener. I tried thus to set Maven as a 
 service, but it doesn't work. Does anyone has the same problem which 
 could
help?
 Thanks in advance.

 Chedly

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 

RE: Create instructions for Continuous integration for dummies?

2005-08-02 Thread David Jackman
The official wiki sounds like the most logical place to me.  If I was a
newbie looking for this kind of information, that wiki would be one of
the first places I'd look (because the CC home page links there). 

-Original Message-
From: Mayorgaadame, Alex [IT] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 10:21 AM
To: Maven Users List
Subject: RE: Create instructions for Continuous integration for dummies?

Is there a better place to do this? I'm thinking to do a Baby steps
guide to setup maven in Windows. Latter on I'll do it on Solaris. I need
to log my work anyway so I believe it'll be nice if this can be helpful
for newbies to come =)

Thanks
Alex

-Original Message-
From: David Jackman [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 02, 2005 12:01 PM
To: Maven Users List
Subject: RE: Create instructions for Continuous integration for dummies
anyone?


The official CC wiki (linked to from the CC home page) is at
http://confluence.public.thoughtworks.org/display/CC/Home 

-Original Message-
From: Mayorgaadame, Alex [IT] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 02, 2005 9:43 AM
To: Maven Users List
Subject: Create instructions for Continuous integration for dummies
anyone?

Anyone that can tell me where the wiki is, so I can star logging my
progress. I believe that this can be valuable for other total dummies
like me. Given that I'll be reading this over and over I would like to
contribute with an Spanish translation, any insights on how to do it
would be appreciated too.

Thanks
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Mayorgaadame, Alex [IT]
Sent: Monday, August 01, 2005 5:47 PM
To: Maven Users List; Jamie Bisotti
Subject: RE: Continuous integration for dummies anyone?


Thanks on your tips. CruiseControl Wiki was down almost all day and I'm
yet not able to found the Maven+CruiseControl+CVS manual, maybe I can
contribute there. I'll try to get this working tomorrow. Looks to be not
very hard.

Thanks on being so nice to newbies here
Alex Mayorga Adame
Citigrouo
Enterprise Applications Engineering

-Original Message-
From: Jamie Bisotti [mailto:[EMAIL PROTECTED]
Sent: Monday, August 01, 2005 12:00 PM
To: Maven Users List
Subject: Re: Continuous integration for dummies anyone?


On 8/1/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED]
wrote:
 Hello all Maven guys and gals:
 
 I'm a total newbie to this stuff, but I've got an assignment to set up
a Maven + Cruise Control + CVS thing for a Hello world! application.
 
 Can anybody walk me trough or point me to a comprehensive guide?
 
 I haven't been able to find one yet. I promise to log everything I
learn to my blog or to any wiki that would help new users of this great
product.
 
 Regards
 Alex Mayorga Adame
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

Check out the Wiki on the CruiseControl site; I believe it has a
Maven/CC/CVS scenario.
Basically, get your project building with Maven is the first/most
important step.  After that, it's just a matter of setting up CC's
config.xml (fairly simple/straight forward), and you should be off and
running.  I'd suggest updating to the latest maven-cruisecontrol-plugin
and using it to generate the initial config.xml; then you can tweak that
as you get more familiar with things.


--
Jamie Bisotti
Software Engineer
Lexmark International, Inc.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [m1] Keeping plugins up to date

2005-08-02 Thread Grant Ingersoll
Yeah, I did that which is fine when you know the specifics of what you
want to update.  I will see if I can come up w/ some script that does it
for me.  

Problem I had was I had a few developers who didn't have the same
version of the jar-plugin, and were seeing different results.  Being
able to validate that everyone has the same plugins (and update) would
be useful, I think

-Grant

 [EMAIL PROTECTED] 08/02/05 2:42 PM 
Grant, there is no single maven command to do that, how about put
multiple
maven commands ( see the link) into a batch file?

-D

On 8/2/05, Grant Ingersoll [EMAIL PROTECTED] wrote:
 I see from http://maven.apache.org/start/download.html that there is
 list of plugins that are to be updated for 1.0.2.
 
 Is there a way to update all installed plugins automatically via one
 command?
 
 Thanks,
 Grant
 

-
 To unsubscribe, e-mail: [EMAIL PROTECTED] 
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED] 
For additional commands, e-mail: [EMAIL PROTECTED] 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [Fwd: [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository]

2005-08-02 Thread robert burrell donkin
On Tue, 2005-08-02 at 18:23 +0300, Arik Kfir wrote:
 Hi,
 
 I know it (was) a snapshot release - but could you perhaps summarize
 the differences between these two versions? I'd look at the change log
 but I assume it does not list changes between snapshots ;-)

not possible, i'm afraid. the exact build date is not known and no tag
was taken (for the snapshot). 

- robert


signature.asc
Description: This is a digitally signed message part


Re: [Fwd: [ANNOUNCEMENT] Right Commons-Cli 1.0 Jar Now In Java Repository]

2005-08-02 Thread Torsten Curdt

Hi,

I know it (was) a snapshot release - but could you perhaps summarize
the differences between these two versions? I'd look at the change  
log

but I assume it does not list changes between snapshots ;-)



not possible, i'm afraid. the exact build date is not known and no tag
was taken (for the snapshot).


I've created a clirr report ...it's still online

http://people.apache.org/~tcurdt/cli/

cheers
--
Torsten


PGP.sig
Description: This is a digitally signed message part


Re: Create instructions for Continuous integration for dummies anyone?

2005-08-02 Thread Brett Porter
Feel free to use http://wiki.apache.org/maven/ too, and it could be
incoporated into the Maven CC Plugin website, or the MAven web site if
it is more general than that.

The wiki is currently empty, so you can create what you need :)

Cheers,
Brett

On 8/3/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED] wrote:
 Anyone that can tell me where the wiki is, so I can star logging my progress. 
 I believe that this can be valuable for other total dummies like me. Given 
 that I'll be reading this over and over I would like to contribute with an 
 Spanish translation, any insights on how to do it would be appreciated too.
 
 Thanks
 Alex Mayorga Adame
 Citigrouo
 Enterprise Applications Engineering
 
 -Original Message-
 From: Mayorgaadame, Alex [IT]
 Sent: Monday, August 01, 2005 5:47 PM
 To: Maven Users List; Jamie Bisotti
 Subject: RE: Continuous integration for dummies anyone?
 
 
 Thanks on your tips. CruiseControl Wiki was down almost all day and I'm yet 
 not able to found the Maven+CruiseControl+CVS manual, maybe I can contribute 
 there. I'll try to get this working tomorrow. Looks to be not very hard.
 
 Thanks on being so nice to newbies here
 Alex Mayorga Adame
 Citigrouo
 Enterprise Applications Engineering
 
 -Original Message-
 From: Jamie Bisotti [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 12:00 PM
 To: Maven Users List
 Subject: Re: Continuous integration for dummies anyone?
 
 
 On 8/1/05, Mayorgaadame, Alex [IT] [EMAIL PROTECTED] wrote:
  Hello all Maven guys and gals:
 
  I'm a total newbie to this stuff, but I've got an assignment to set up a 
  Maven + Cruise Control + CVS thing for a Hello world! application.
 
  Can anybody walk me trough or point me to a comprehensive guide?
 
  I haven't been able to find one yet. I promise to log everything I learn to 
  my blog or to any wiki that would help new users of this great product.
 
  Regards
  Alex Mayorga Adame
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 Check out the Wiki on the CruiseControl site; I believe it has a
 Maven/CC/CVS scenario.
 Basically, get your project building with Maven is the first/most
 important step.  After that, it's just a matter of setting up CC's
 config.xml (fairly simple/straight forward), and you should be off and
 running.  I'd suggest updating to the latest
 maven-cruisecontrol-plugin and using it to generate the initial
 config.xml; then you can tweak that as you get more familiar with
 things.
 
 
 --
 Jamie Bisotti
 Software Engineer
 Lexmark International, Inc.
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[m2] build fails on compiler warning

2005-08-02 Thread andrew
Maven version: 2.0-beta-1-SNAPSHOT, and
Maven version: 2.0-alpha-3

Hi,

I'm attempting to compile a class that contains the now reserved word
'assert' as a identifier.

This compiles fine, with the requisite warnings, outside of m2.

Under m2, the compiler:compile goal produces the warnings and actually
compiles the class BUT the build fails [Listing 1].

I would expect the build to pass in this case.

Previously on this list I have seen it suggested that setting the source
compatibility to 1.4 may fix this. In my case, setting this [Listing 2]
results in no warning, no class file and a failed build [Listing 3].

Any suggestions on how I can get around this?

Even if I do away with the assert, will m2 fail the build on any
compiler warning?

Cheers,
...andrew

Listing 1

$ m2 clean:clean compiler:compile
[INFO] Using local copy of plugins.xml (plugin mappings) for group:
'org.apache.maven.plugins' from:
/home/amm/.m2/repository/org/apache/maven/plugins/plugins.xml
[INFO] maven-clean-plugin: resolved to version 2.0-alpha-3 from local
repository
[INFO] maven-compiler-plugin: resolved to version 2.0-alpha-3 from local
repository
[INFO]

[INFO] Building distra - numpty
[INFO]task-segment: [clean:clean, compiler:compile]
[INFO]

[INFO] [clean:clean]
[INFO] Deleting directory
/secure/home/amm/prj/bt3/distra/numpty/numpty/target
[INFO] [compiler:compile]
Compiling 1 source file to
/secure/home/amm/prj/bt3/distra/numpty/numpty/target/classes
[INFO]

[INFO] BUILD FAILURE
[INFO]

[INFO] Reason: Compilation failure
[INFO]

[INFO] no more tokens - could not parse error message:
/secure/home/amm/prj/bt3/distra/numpty/numpty/src/main/java/Numpty.java:4:
warning: as of release 1.4, assert is a keyword, and may not be used as
an identifier
  private static String assert = Hello assert!; // should trigger
compiler warning
^

no more tokens - could not parse error message:
/secure/home/amm/prj/bt3/distra/numpty/numpty/src/main/java/Numpty.java:6:
warning: as of release 1.4, assert is a keyword, and may not be used as
an identifier
System.out.println(assert);   // should trigger
compiler warning
   ^


[INFO]

[INFO] Total time:  1 second
[INFO] Finished at: Wed Aug 03 13:08:26 EST 2005
[INFO] Final Memory: 2M/5M
[INFO]


Listing 2

  build
plugins
  plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-compiler-plugin/artifactId
version2.0-alpha-3/version
goals
  goal
idcompile/id
configuration
  source1.4/source
/configuration
  /goal
/goals
  /plugin
/plugins
  /build

Listing 3

$ m2 clean:clean compiler:compile
[INFO] Using local copy of plugins.xml (plugin mappings) for group:
'org.apache.maven.plugins' from:
/home/amm/.m2/repository/org/apache/maven/plugins/plugins.xml
[INFO] maven-clean-plugin: resolved to version 2.0-alpha-3 from local
repository
[INFO]

[INFO] Building distra - numpty
[INFO]task-segment: [clean:clean, compiler:compile]
[INFO]

[INFO] [clean:clean]
[INFO] Deleting directory
/secure/home/amm/prj/bt3/distra/numpty/numpty/target
[INFO] [compiler:compile]
Compiling 1 source file to
/secure/home/amm/prj/bt3/distra/numpty/numpty/target/classes
[INFO]

[INFO] BUILD FAILURE
[INFO]

[INFO] Reason: Compilation failure
[INFO]

[INFO] Failure executing javac, but could not parse the error:



[INFO]

[INFO] Total time:  1 second
[INFO] Finished at: Wed Aug 03 13:09:50 EST 2005
[INFO] Final Memory: 1M/3M
[INFO]


--

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [m2] build fails on compiler warning

2005-08-02 Thread Brett Porter
This is a bug, that it cannot parse the warning as a warning. Please
file it and we'll get it fixed before the next release.

Thanks,
Brett

On 8/3/05, andrew [EMAIL PROTECTED] wrote:
 Maven version: 2.0-beta-1-SNAPSHOT, and
 Maven version: 2.0-alpha-3
 
 Hi,
 
 I'm attempting to compile a class that contains the now reserved word
 'assert' as a identifier.
 
 This compiles fine, with the requisite warnings, outside of m2.
 
 Under m2, the compiler:compile goal produces the warnings and actually
 compiles the class BUT the build fails [Listing 1].
 
 I would expect the build to pass in this case.
 
 Previously on this list I have seen it suggested that setting the source
 compatibility to 1.4 may fix this. In my case, setting this [Listing 2]
 results in no warning, no class file and a failed build [Listing 3].
 
 Any suggestions on how I can get around this?
 
 Even if I do away with the assert, will m2 fail the build on any
 compiler warning?
 
 Cheers,
 ...andrew
 
 Listing 1
 
 $ m2 clean:clean compiler:compile
 [INFO] Using local copy of plugins.xml (plugin mappings) for group:
 'org.apache.maven.plugins' from:
 /home/amm/.m2/repository/org/apache/maven/plugins/plugins.xml
 [INFO] maven-clean-plugin: resolved to version 2.0-alpha-3 from local
 repository
 [INFO] maven-compiler-plugin: resolved to version 2.0-alpha-3 from local
 repository
 [INFO]
 
 [INFO] Building distra - numpty
 [INFO]task-segment: [clean:clean, compiler:compile]
 [INFO]
 
 [INFO] [clean:clean]
 [INFO] Deleting directory
 /secure/home/amm/prj/bt3/distra/numpty/numpty/target
 [INFO] [compiler:compile]
 Compiling 1 source file to
 /secure/home/amm/prj/bt3/distra/numpty/numpty/target/classes
 [INFO]
 
 [INFO] BUILD FAILURE
 [INFO]
 
 [INFO] Reason: Compilation failure
 [INFO]
 
 [INFO] no more tokens - could not parse error message:
 /secure/home/amm/prj/bt3/distra/numpty/numpty/src/main/java/Numpty.java:4:
 warning: as of release 1.4, assert is a keyword, and may not be used as
 an identifier
   private static String assert = Hello assert!; // should trigger
 compiler warning
 ^
 
 no more tokens - could not parse error message:
 /secure/home/amm/prj/bt3/distra/numpty/numpty/src/main/java/Numpty.java:6:
 warning: as of release 1.4, assert is a keyword, and may not be used as
 an identifier
 System.out.println(assert);   // should trigger
 compiler warning
^
 
 
 [INFO]
 
 [INFO] Total time:  1 second
 [INFO] Finished at: Wed Aug 03 13:08:26 EST 2005
 [INFO] Final Memory: 2M/5M
 [INFO]
 
 
 Listing 2
 
   build
 plugins
   plugin
 groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-compiler-plugin/artifactId
 version2.0-alpha-3/version
 goals
   goal
 idcompile/id
 configuration
   source1.4/source
 /configuration
   /goal
 /goals
   /plugin
 /plugins
   /build
 
 Listing 3
 
 $ m2 clean:clean compiler:compile
 [INFO] Using local copy of plugins.xml (plugin mappings) for group:
 'org.apache.maven.plugins' from:
 /home/amm/.m2/repository/org/apache/maven/plugins/plugins.xml
 [INFO] maven-clean-plugin: resolved to version 2.0-alpha-3 from local
 repository
 [INFO]
 
 [INFO] Building distra - numpty
 [INFO]task-segment: [clean:clean, compiler:compile]
 [INFO]
 
 [INFO] [clean:clean]
 [INFO] Deleting directory
 /secure/home/amm/prj/bt3/distra/numpty/numpty/target
 [INFO] [compiler:compile]
 Compiling 1 source file to
 /secure/home/amm/prj/bt3/distra/numpty/numpty/target/classes
 [INFO]
 
 [INFO] BUILD FAILURE
 [INFO]
 
 [INFO] Reason: Compilation failure
 [INFO]
 
 [INFO] Failure executing javac, but could not parse the error:
 
 
 
 [INFO]
 
 [INFO] Total time:  1 second
 [INFO] Finished at: Wed Aug 03 13:09:50 EST 2005
 [INFO] Final Memory: 1M/3M
 [INFO]
 
 
 --
 
 

scm:update error

2005-08-02 Thread Mariano Stampella

Hi, I'm Mariano with the same old problem, I use the scm-plugin and when try
to use the update goal occurs this

[WARNING] Unknown status: '? '.
[WARNING] Unknown status: 'M '.

That's because when i execute the update goal really executed this:

cvs -f -q update -d

And the result is:

? .xdoclet
? bin
? example
? iaso.ear
? manga.jpg
? xdoclet-build.xml
? j2ee/jars/javax.servlet.jar
M .classpath
M maven.xml
M project.properties


For this reason the update process is truncated.

Somebody can a solution for that?

Thanks

Mariano



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]