Re: [PLEASE TEST] Apache Maven 3.0-RC2

2010-09-22 Thread Emmanuel Venisse
Is it a new process? For previous release, it was necessary to vote for all RC. Why don't you run a vote for 3.0 RCx? Emmanuel On Wed, Sep 22, 2010 at 8:44 PM, Benjamin Bentmann < benjamin.bentm...@udo.edu> wrote: > Hi, > > in preparation for the release of Apache Maven 3.0, the Maven team is >

Re: Welcome Stephen Connolly to the Maven PMC

2010-09-14 Thread Emmanuel Venisse
Welcome Stephen. Emmanuel On Tue, Sep 14, 2010 at 4:03 AM, Brian Fox wrote: > Stephen has just joined us on the Maven PMC. He is the author of the > very popular versions-maven-plugin at Codehaus and has recently been > doing maintenance of the Surefire plugin at the Maven project. > > Welcome

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 direct cvs client comman

Re: local repository grows indefinitely on CI server

2008-09-25 Thread Emmanuel Venisse
Yes, it's a common problem on CI server but on developer workstation too if builds are intensive. About CI server, it is necessary to clean sometimes old snapshots because they are generally not used. Continuum have this features since 1.2, I don't know for other CI servers and if they doesn't exis

Re: scm:tag/branch doesn't update scm section

2008-09-24 Thread Emmanuel Venisse
Maven-SCM know nothing about the POM so it don't update the scm section in it and it won't do it in the future. To create a branch for a maven project, the best way is to use the release plugin : http://maven.apache.org/plugins/maven-release-plugin/examples/branch.html To create a tag for a maven

Re: when maven2 downloads dependencies

2008-08-25 Thread Emmanuel Venisse
their own maven uploads but Id rather not get into this > timeconsuming approach.. :) > > I tried the -o switch for running maven in offline mode and it seems to > fulfill my needs so far. > > Thanks, > GJ > > > > From: Emmanuel Veni

Re: when maven2 downloads dependencies

2008-08-25 Thread Emmanuel Venisse
This pom isn't in your local repository so maven try to download it, but it doesn' exist on repo1 too so it will try for each build. Emmanuel On Mon, Aug 25, 2008 at 4:58 PM, Jeudy, Guillaume <[EMAIL PROTECTED]>wrote: > > Hi, > > My local repo is populated to build my project, I'm not using any

Re: AW: Release fails during SVN commit

2008-08-21 Thread Emmanuel Venisse
ening directly from the command-line as Daniel indicated (I > haven't tried it myself, but as far as I know Maven uses the command-line, > not JavaHL), then it can't be a JavaHL issue. > > -Stephen > > On Thu, Aug 21, 2008 at 10:38 AM, Emmanuel Venisse < > [EMAIL P

Re: AW: Release fails during SVN commit

2008-08-21 Thread Emmanuel Venisse
The issue is discussed on the subversion users list : http://www.nabble.com/Mac-OS-X-%2B-SVN-1.5.1-%3D-Branch-problem-td19017538.html It is related to a change in JavaHL: * correctly set the peg revision for copy in JavaHL (r31994) Emmanuel On Thu, Aug 21, 2008 at 4:15 PM, Daniel Kulp <[EMAIL PR

Re: How to deploy a Flex library (swc)

2008-07-15 Thread Emmanuel Venisse
As swc packaging isn't a "standard" maven packaging, you must add the flex mojo in your pom as an extension like this: info.rvin.mojo flex-compiler-mojo 1.0 true ... Emmanuel On

Re: scm:checkout question

2008-04-29 Thread Emmanuel Venisse
I don't know. Maybe an issue in the Perforce provider. Emmanuel On Tue, Apr 29, 2008 at 7:40 PM, Daniel King <[EMAIL PROTECTED]> wrote: > The scm:bootstrap seems to be checking everything out twice. Any ideas > why? > > Here are the steps: > > 1) Removing the checkoutDirectory > 2) Creating a t

Re: scm:checkout question

2008-04-29 Thread Emmanuel Venisse
You can checkout a project without a pom like this: mvn scm:checkout -DconnectionUrl=[YOUR_SCM_URL] All options are defined here: http://maven.apache.org/scm/plugins/checkout-mojo.html The bootstrap goal should work with something like this: mvn scm:bootstrap -DconnectionUrl=[YOUR_SCM_URL] -Dgo

Re: scm:checkout question

2008-04-29 Thread Emmanuel Venisse
You can checkout a project without a pom like this: mvn scm:checkout -DconnectionUrl=[YOUR_SCM_URL] All options are defined here: http://maven.apache.org/scm/plugins/checkout-mojo.html the bootstr On Mon, Apr 28, 2008 at 11:11 PM, Daniel King <[EMAIL PROTECTED]> wrote: > How can you checkout a

Re: Adding Ant Project to Continuum | Need Help

2008-04-21 Thread Emmanuel Venisse
Continuum is now a top level project at ASF, please use the Continuum users list ([EMAIL PROTECTED]) Emmanuel On Mon, Apr 21, 2008 at 1:40 PM, Sen Utpal <[EMAIL PROTECTED]> wrote: > Hi, > I was trying to add my ant project to continuum and am facing some issues. > It will be great if you can spa

Re: Build blocked

2008-03-11 Thread Emmanuel Venisse
ugged to my db. > > 2008/3/11, Emmanuel Venisse <[EMAIL PROTECTED]>: > > > > What is difficult??? > > > > On Mon, Mar 10, 2008 at 6:51 PM, Nicolas Loison < > [EMAIL PROTECTED] > > > > > > > wrote: > > > > > Ouc, >

Re: Build blocked

2008-03-11 Thread Emmanuel Venisse
What is difficult??? On Mon, Mar 10, 2008 at 6:51 PM, Nicolas Loison <[EMAIL PROTECTED]> wrote: > Ouc, > > It's too much difficult > > 2008/3/10, Emmanuel Venisse <[EMAIL PROTECTED]>: > > > > You can't except if you start a derby server pl

Re: Problem with continuum

2008-03-04 Thread Emmanuel Venisse
On Tue, Mar 4, 2008 at 4:12 PM, Tomislav Stojcevich <[EMAIL PROTECTED]> wrote: > Isn't that what the Build Fresh option on the build definition is for? Yes and no :) The build fresh run a clean checkout instead of an update but it will be use on all runs except if you change back the value. Wit

Re: need to host the site in the embeded jetty server of continuum

2008-02-27 Thread Emmanuel Venisse
You can't. A better way would be to use the continuum webapp instead of the standalone version and to install in in a web container like tomcat or jetty. Then you'll can do what you want. Emmanuel On Wed, Feb 27, 2008 at 2:08 PM, Arun Kathirvel Sarojam <[EMAIL PROTECTED]> wrote: > > HI, > >

Re: scm plugin and fille permission

2008-02-27 Thread Emmanuel Venisse
Maybe an issue in the java cvs lib used by maven-scm. If you have cvs command line installed, you can use the native cvs: http://maven.apache.org/scm/cvs.html Emmanuel > It seems that mvn scm:checkout doesn't respect the file permissions. > > In cvs I have a file with exec permission (-rwxrwxr-x)

Re: Compilation Failure Still Build Successful message

2008-02-27 Thread Emmanuel Venisse
If you use maven 2.0.7, the fix is explain in the Continuum FAQs Emmanuel On Wed, Feb 27, 2008 at 6:58 AM, Hemant Malik <[EMAIL PROTECTED]> wrote: > Hi,abh > In one of my submodules project, one of the sub module is having a > compilation error, but the email subject in the notification is still

Re: Windows path length limitation

2008-02-22 Thread Emmanuel Venisse
bad windows. I'll look at this issue before to release a new version of maven-scm On Thu, Feb 21, 2008 at 7:01 PM, KURT TOMETICH <[EMAIL PROTECTED]> wrote: > > I went ahead and logged an improvement to Maven SCM ( > http://jira.codehaus.org/browse/SCM-368). Hopefully they will fix this so > Win

Re: Test results in shell project

2008-02-21 Thread Emmanuel Venisse
Hmm, good question :) if you use a JUnit xml file, stored under target/surefire-reports/, it should work. I don't think we test the project type. In a future Continuum version, you'll can add your own plugin to do that without to create a JUnit xml file. Emmanuel On Thu, Feb 21, 2008 at 9:49 AM

Re: notifier email address as property giving error

2008-02-14 Thread Emmanuel Venisse
Can you file an issue? Emmanuel On Thu, Feb 14, 2008 at 2:11 AM, treese <[EMAIL PROTECTED]> wrote: > > With Continuum 1.1, I have two build definitions for one project - one for > hourly builds and the other for a daily full build. We want different > email > addresses for each build definition

Re: generate e-mailaddresses from SVN?

2008-02-14 Thread Emmanuel Venisse
Not yet. Emmanuel On Wed, Feb 13, 2008 at 9:01 PM, Eric Pugh <[EMAIL PROTECTED]> wrote: > Do you have any guidance for projects that don't have a POM? I am > building some .NET code via the shell script approach... > > Is there a way for me to create a POM? Or some sort of rule that > appends

Re: Reset continuum admin password

2008-02-13 Thread Emmanuel Venisse
You can follow this manual process: - shutdown Continuum - connect a SQL client like SquirrelSQL on the db - change the password (can't remember the table name, probably users or something like that), the password is encrypted with sha1 if I remember it correctly Emmanuel On Feb 13, 2008 4:34 PM

Re: generate e-mailaddresses from SVN?

2008-02-13 Thread Emmanuel Venisse
If the latest commiter is defined in the pom as a developer, we take his email address in the pom; Emmanuel On Feb 13, 2008 4:22 PM, Doug Knesek <[EMAIL PROTECTED]> wrote: > > How are the e-mail addresses of the latest committers determined? > > > Emmanuel Venisse wr

Re: Dependencies in builds

2008-02-13 Thread Emmanuel Venisse
> > > "it will be probably in a future version" - can you be more specific? > I don't think we'll can add it before the next major version 2.x. I don't have a date for the release. Emmanuel

Re: Dependencies in builds

2008-02-13 Thread Emmanuel Venisse
Actually, it isn't possible to add some "build rules", it will be probably in a future version. A workaround for your issue would be to create only one shell project that will run your 3 builds with a check of the result of each. Emmanuel On Feb 13, 2008 12:17 PM, Ken Turner <[EMAIL PROTECTED]>

Re: Deployment fails with continuum

2008-02-12 Thread Emmanuel Venisse
You should try an other version of the wagon-webdav extension. We use this for our codehaus deployment: org.apache.maven.wagon wagon-webdav 1.0-rc1-SNAPSHOT maven-release-plugin deploy

Re: How to make Continuum continue with the build even if there are some errors or failures?

2008-02-11 Thread Emmanuel Venisse
know if this can be done? Is there is a settings or a parameter > that can be defined to make Continuum do that? > > Thanks, > >Sameh > > -Original Message- > From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] > Sent: Monday, February 11, 2008 2:00 PM > To: [E

Re: Cannot execute mojo

2008-02-11 Thread Emmanuel Venisse
Your scm url is probably wrong so Continuum checkout the wrong directory Emmanuel On Feb 11, 2008 6:08 PM, Tony.Cesc <[EMAIL PROTECTED]> wrote: > > [INFO] Scanning for projects... > [INFO] > > [INFO] Building Maven Default

Re: Unable to send emails

2008-02-08 Thread Emmanuel Venisse
On Feb 8, 2008 5:32 PM, Jakub Kozisek <[EMAIL PROTECTED]> wrote: > Yes, I restarted it severail times. > > As I mentioned earlier everything is working on another machine and that > made me think something is wrong with OS configuration. Are you on windows with an antivirus? In some case, javama

Re: Re: Unable to send emails

2008-02-08 Thread Emmanuel Venisse
in the extracted apps is enough. Do you have restarted your continuum? Emmanuel On Feb 8, 2008 3:53 PM, Jakub Kozisek <[EMAIL PROTECTED]> wrote: > Thank you for your answer! > > Problem is that I already set "from-mailbox" and "from-name" in > application.xml - in both "apps/continuum-plexus-app

Re: Unable to send emails

2008-02-07 Thread Emmanuel Venisse
You must set the FROM address in WEB-INF/classes/META-INF/plexus/application.xml Emmanuel On Feb 7, 2008 8:51 PM, Jakub Kozisek <[EMAIL PROTECTED]> wrote: > Hello, > > I want to get sending emails working, but when I'm trying to send > validation > emails or notifications, I'm getting this excep

Re: Missing 'scm' element in the POM.

2008-02-07 Thread Emmanuel Venisse
do you have scm element defined in the pom stored in your svn? Emmanuel On Feb 7, 2008 9:25 PM, Jan Nielsen <[EMAIL PROTECTED]> wrote: > In Continuum 1.1, installed as a WAR in GlassFish 9.1ur1 on Windows, I > have a multi-module Maven 2 POM being uploaded with a POM Url: > > file:///c:/dev/myp

Re: Bug in Continuum 1.1-beta-3 ? - goals and profile seem to be locked together

2008-02-07 Thread Emmanuel Venisse
If you want different configurations, you have few solutions: - Define a profile that use the most recent jdk and configure source/target parameters on the compiler plugin in each projects - Remove the group build definition and add a new build definition on each project linked with a specific prof

Re: Online report URL

2008-01-28 Thread Emmanuel Venisse
We already answer (lot of time) to this question on this list. You can change it in the configuration page. Emmanuel On Jan 28, 2008 9:04 AM, Hemant Malik <[EMAIL PROTECTED]> wrote: > Hi, > All the notifiers receive the online report link as below ( localhost??). > http://localhost:8080/continuu

Re: Continuum 1.1 standalone on WindowsXP doesn't send email?

2008-01-25 Thread Emmanuel Venisse
one. > > Finally, do you know of any example that I can view to see how the email > section is set in the C:\continuum-1.1\conf\plexus.xml file? That would > help a lot. > > Thanks, > > Sameh > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PRO

Re: Continuum 1.1 standalone on WindowsXP doesn't send email?

2008-01-24 Thread Emmanuel Venisse
true > > >mail.smtp.starttls.enable >true > > >mail.smtp.socketFactory.class >javax.net.ssl.SSLSocketFactory > > > > > -Original Message

Re: Continuum 1.1 standalone on WindowsXP doesn't send email?

2008-01-24 Thread Emmanuel Venisse
Do you have configured your smtp server in conf/plexus.xml? On Jan 24, 2008 11:25 PM, Tawfik, Sameh E <[EMAIL PROTECTED]> wrote: > > Hi, > > According to the help documentation, the following is all I need to have > Continuum send an email when it done from running a build, but Continuum > does

Re: How to search the archive?

2008-01-23 Thread Emmanuel Venisse
You can search with nabble: http://www.nabble.com/Continuum-f13866.html Emmanuel On Jan 23, 2008 9:34 AM, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: > > > -- Forwarded message -- > From: Tawfik, Sameh E <[EMAIL PROTECTED]> > Date: Jan 23, 2008 1:07

Fwd: How to search the archive?

2008-01-23 Thread Emmanuel Venisse
-- Forwarded message -- From: Tawfik, Sameh E <[EMAIL PROTECTED]> Date: Jan 23, 2008 1:07 AM Subject: How to search the archive? To: [EMAIL PROTECTED] Hi, When I go to http://mail-archives.apache.org/mod_mbox/maven-continuum-users/ to search for a specific topic, I do not see wh

Re: Build an ant project in Continuum1.1-beta-4

2008-01-22 Thread Emmanuel Venisse
_10. > > Dragan-sassler > > > > -Ursprüngliche Nachricht- > Von: Emmanuel Venisse [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 22. Januar 2008 15:24 > An: [EMAIL PROTECTED] > Betreff: Re: Build an ant project in Continuum1.1-beta-4 > > > Your scm url

Re: Problem to login in Continuum 1.1 final with Internet Explorer

2007-12-19 Thread Emmanuel Venisse
You're not alone with this problem but we don't know what's happen for the moment. Emmanuel > Hi, > > I installed the Continuum 1.1 final in a linux machine. > When I try do login (as admin) I am redirect to home. > This happen with Internet Explorer. In firefox work out. > I am using cor

Re: Code checkout not happening

2007-12-17 Thread Emmanuel Venisse
What is your scm? Do you have a correct scm url? Emmanuel Doug Knesek a écrit : I have set up a pretty typical Maven2 Java project and trying to execute it using Continuum 1.1. I've set "Build Fresh" to true. It doesn't seem like continuum is actually doing a checkout of the project from the

Re: Confused by Continuum and Maven2 multimodule integration

2007-12-17 Thread Emmanuel Venisse
The standard maven directory structure is recommended, but you're right, it rebuild all. We must add a check in next version to know if the build generated a real artifact that require a children build Emmanuel Julien Stern a écrit : Hi list, when using Maven2, it appear to be recommended to

Re: Continuum not able to handle the parent-child hierarchy

2007-12-12 Thread Emmanuel Venisse
Post your logs when you select R1 and R2 for building Emmanuel Hemant Malik a écrit : Hi, I am using Continuum 1.1 deployed on tomcat 5.5. The problem I am facing is that Continuum after checking out is not able to handle the parent-child relationships in the project structure. For instance if

Re: [c1.1] setting the min and max heap size ?

2007-12-12 Thread Emmanuel Venisse
memory parameters (and all other jvm parameters) can be set in the wrapper.conf Emmanuel Mick Knutson a écrit : We use the sun sparc 64 run.sh On Dec 10, 2007 1:48 PM, olivier lamy <[EMAIL PROTECTED]> wrote: Hi, if you launch it with plexus.sh/bat, look at the script and set PLEXUS_OPTS HT

Re: AW: Wrong build status in Project Group Summary

2007-12-12 Thread Emmanuel Venisse
time it looses the state and shows the "build in Error" -Ursprüngliche Nachricht- Von: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 30. November 2007 16:07 An: [EMAIL PROTECTED] Betreff: Re: Wrong build status in Project Group Summary [EMAIL PROTECTED

Re: Directory naming in working-directory

2007-12-12 Thread Emmanuel Venisse
numbers are project IDs. We don't use the origin name because with it, it won't be easy to work with branches if you want to work/build more than one branch. Actually, it isn't possible to use an other strategy. Why is it a problem for you? Emmanuel Ritz, Martin a écrit : Hi Continuu

Re: Questions about Continuum

2007-12-07 Thread Emmanuel Venisse
> Hi, > > I'd like to use Continuum for my project. But I have some requirements I > am not sure Continuum matches. > The version I have installed is 1.1 final. > > a) Is it possible for Ant or Batch projects to add dependencies. I'd > like to set the prerequisites for execution. (like the 'depends

Re: continuum 1.1 together with archiva 1.0 on tomcat 5.5

2007-12-03 Thread Emmanuel Venisse
You can't use more than one datasource on an embedded db. I think the exception is on the users db access. I'd recommend to use an external derby server instead of an embedded db. Emmanuel ossi petz a écrit : Hallo I tried to install both archiva and continuum on the same tomcat 5.5.25 / Ja

Re: hi, i need some help with mail notifications

2007-12-03 Thread Emmanuel Venisse
Your smtp server requires a SSL connection or a plain text? Emmanuel Gerhard a écrit : I got it to try and send, but now I get another exception? DEBUG SMTP: exception reading response: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection? ??? Here is my resource entry in

Re: Project change detection

2007-11-30 Thread Emmanuel Venisse
I don't know why it isn't detected. Maybe you can update to 1.1 Can you post more logs? Emmanuel MATHUS Baptiste a écrit : Hi all, Two mails in a day :-). We just committed some code in one of our project. I was looking at the logs and saw something bizarre : As an example, those lines show

Re: Setting continuum over Oracle

2007-11-30 Thread Emmanuel Venisse
Please, attach it to an issue in jira and we'll apply it to trunk. Thanks. Emmanuel Raúl Casado Piqueras a écrit : Hi all! I have been trying a few things and I have already continuum running using Oracle as DB. I have only follow the steps given in the first link. At the end I got the att

Re: Automatic Build/polling repository not working

2007-11-30 Thread Emmanuel Venisse
You can use 1.1 final, it is released. do you have attached your schedule to the build definition? Is it enabled/activated? Emmanuel Steve Povilaitis a écrit : Most exalted ones, I'm running continuum 1.1-beta-4 standalone on Windows XP Server. I have set up my project to poll my subversion

Re: Wrong build status in Project Group Summary

2007-11-30 Thread Emmanuel Venisse
[EMAIL PROTECTED] a écrit : Hi, currently I have a strange error with the displaying of the build status in the continuum web interface. I uploaded some screenshots to my old opera profile, which I never used but this was the shortest way to get them up somewhere. The mail was too large for

Re: Why "Same state, not sending message"

2007-11-30 Thread Emmanuel Venisse
MATHUS Baptiste a écrit : Hi, OK, it works. Although I found the file in $CONTINUUM_HOME/apps/continuum/conf/application.xml instead. Maybe that was something that changed between continuum 1.03 and continuum 1.1. Yes. Thanks. -Message d'origine- De : Emmanuel Venisse [m

Re: POM file does not exist. Either the POM you specified or one of its modules does not exist.

2007-11-30 Thread Emmanuel Venisse
ml stored under ${user.home}/.m2/ Emmanuel Siarhei dboeckli wrote: it was the first project i tried out, so i took the simpliest one, no modules, no parents! -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Monday, November 05, 2007 05:24 PM To: [

Re: Why "Same state, not sending message"

2007-11-30 Thread Emmanuel Venisse
You can configure "alwaysSend to true in WEB-INF/classes/META-INF/plexus/application.xml in the mail notifier component descriptor. By default, we don't send notifications if the state doesn't change to not spam users. Emmanuel MATHUS Baptiste a écrit : Hi all, I've taken a look on the web

Re: Problem with continuum 1.1 - cannot connect with web browser

2007-11-30 Thread Emmanuel Venisse
what is your jdk? it isn't a sun jdk, right? Emmanuel Kuipers, Hartmut a écrit : Hello! Continuum 1.1 is running on a linux server (Suse 10.3, 64 bit), but if I start my web browser with http://localhost:8080/continuum/ I get an error (http error: 500). With continuum 1.0.3 everything works f

Re: Upgrade from 1.1-beta-3 to 1.1 failed

2007-11-29 Thread Emmanuel Venisse
Restart Continuum to see if this exception always appear. Emmanuel Julien Stern a écrit : Hi list, I had a bit of time so I tried to upgrade from beta3 to 1.1. I followed the instructions on the upgrade page in order to restore the databases. When I start the new version (1.1) after the datab

Re: clearcase update doesn't show autor,date,comment

2007-11-29 Thread Emmanuel Venisse
what is the language used for the cleartool output? english? Do you have the same date on the continuum machine and your clearcase server? Emmanuel I am Who i am a écrit : Hi All I'm using continuum with clearcase, update and builds are happening fine, but when i see the build page of projec

Re: [1.1] problem with usermanagement

2007-11-29 Thread Emmanuel Venisse
Do you use the same login/password with both ways? Emmanuel Cla Emanuel Monsch a écrit : hi there i've noticed a strange behavior. when i add (as Admin) a normal user account, i cannot use it. every try to log in with the new account ends with the following message: --> You have entered an

Re: 1.1-beta-4 to 1.1 final data migration

2007-11-26 Thread Emmanuel Venisse
Hmm, weird. As a workaround, I think you can use datamanagement 1.1 to migrate your data because we don't have db schema (if I remember it correctly between 1.1-beta-4 and 1.1 final) Emmanuel Johnathan Gifford a écrit : While trying to migrate our data from 1.1-beta-4, I'm getting the follow

[announce] Continuum 1.1 final is released

2007-11-23 Thread Emmanuel Venisse
The Continuum team is pleased to announce the Continuum 1.1 final release Highlights are: * bug fixes * A new backup tool with xmlrpc for continuum db You can grab the latest release from the download page : http://maven.apache.org/continuum/download.html To upgrade from a previous 1.

Re: Sql error

2007-11-22 Thread Emmanuel Venisse
Do you have an sql client connected to the embedded derby? Emmanuel Hodanics, Charles J. a écrit : Continuum has come across a sql error when a few things have failed. It cannot delete the project, get this error: Error Occurred javax.jdo.JDODataStoreException: Update request failed: UPDATE

Re: need to change the directory of build.xml

2007-11-20 Thread Emmanuel Venisse
llavi Satish -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 3:03 PM To: [EMAIL PROTECTED] Subject: Re: need to change the directory of build.xml you should define the build.xml path in the build definition. Emmanuel [EMAIL PROTECT

Re: Maven's included with Leopard (Mac OS 10.5)

2007-11-16 Thread Emmanuel Venisse
I can run the maven and java version that I want. Emmanuel Ryan Scott a écrit : I have tried many things but i keep getting patch updates from Apple that overwrites my changes. It is not really unix if you can't run any version of Java you want lol. Scott Ryan CTO Soaring Eagle L.L.C. Denv

Re: trouble adding Maven 2.0 pom

2007-11-15 Thread Emmanuel Venisse
a little thing for messing around in. So, for what it's worth, I copied the SCM settings verbatim from here: http://maven.apache.org/pom.html#SCMand continuum is happy now. ,chris On Nov 15, 2007 11:44 AM, Emmanuel Venisse < [EMAIL PROTECTED]> wrote: Christofer Jennings a écrit :

Re: trouble adding Maven 2.0 pom

2007-11-15 Thread Emmanuel Venisse
Christofer Jennings a écrit : Hi, I'm trying continuum-1.1-beta-4 and having trouble adding a maven 2.0.7 pom. I haven't used continuum for a while, so I'm basically a newbee. If I put in a pom url like this: file:///C:/wicket/wickety/pom.xml I get this message: The specified reso

Re: wrapper.java.maxmemory

2007-11-14 Thread Emmanuel Venisse
I removed it even if it doesn't change the execution Emmanuel Francis De Brabandere a écrit : just a question about wrapper.conf # Initial Java Heap Size (in MB) wrapper.java.initmemory=3 # Maximum Java Heap Size (in MB) wrapper.java.maxmemory=384m what is that 'm' doing after the 384? is th

Re: Receiving email notification of successful build

2007-11-13 Thread Emmanuel Venisse
If you start with Continuum, it would be better to start with 1.1-beta-4. Continuum send a mail ONLY if the build state is modified. If you're always in success, Continuum doesn't send mail. If you want to receive a mail for each build, you can configure "alwaysSend" to true in WEB-INF/classes/

Re: scm:bootstrap checks out twice

2007-11-12 Thread Emmanuel Venisse
How do you use it? Emmanuel Ilyevsky, Leonid (Equity Trading) a écrit : I am using the maven-scm-plugin, the scm:bootstrap goal. Everything works OK, except that it does the checkout from svn twice: it cleans the ".../target/checkout" directory, performs the checkout, and then cleans again and

Re: Cleaning up results

2007-11-12 Thread Emmanuel Venisse
Alex Mayorga Adame a écrit : Emmanuel Venisse wrote: Alex Mayorga Adame a écrit : Would this guide http://maven.apache.org/continuum/documentation/1_1/installation/upgrade.html work if I'm coming from 1.0.3? No, it is for 1.1 only. Emmanuel Is there a way from 1.0.3 to the latest

Re: from 1.1-beta3 to beta4

2007-11-12 Thread Emmanuel Venisse
It's a known issue (CONTINUUM-1540). the workaround is to remove the continuum database and add ";create=true" on the jdbc url you use for the import Emmanuel Francis De Brabandere a écrit : Hi all, I'm trying to upgrade from beta3 to beta4 but no succes. I have been following the migration

Re: AW: AW: AW: CVS checkout fails: "Terminated with fatal signal 11"

2007-11-12 Thread Emmanuel Venisse
the local JVM is out of memory? Although, wouldn't I got an OutOfMemory Exception if this was the case? Are you aware of situations when continuum's process needs a lot of memory? Is it possible to write the output of the cvs command to the continuum logs? -Ursprüngliche Nachri

Re: Cleaning up results

2007-11-12 Thread Emmanuel Venisse
Alex Mayorga Adame a écrit : Would this guide http://maven.apache.org/continuum/documentation/1_1/installation/upgrade.html work if I'm coming from 1.0.3? No, it is for 1.1 only. Emmanuel I'll take the plunge and go with 1.1 Beta 4 if only to reclaim some space. Any bumps along the road I'

Re: AW: AW: CVS checkout fails: "Terminated with fatal signal 11"

2007-11-12 Thread Emmanuel Venisse
.com/ml/version-control.cvs.bugs/2002-04/msg00298.html Emmanuel [EMAIL PROTECTED] a écrit : Oh sorry, I think I missunderstood you. Thought you asked how often it is used to run ;-) One checkout takes about 3 minutes. -Ursprüngliche Nachricht- Von: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Gesen

Re: AW: CVS checkout fails: "Terminated with fatal signal 11"

2007-11-12 Thread Emmanuel Venisse
PROTECTED] Betreff: AW: CVS checkout fails: "Terminated with fatal signal 11" It is planned to do a clean checkout once a day -Ursprüngliche Nachricht- Von: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. November 2007 20:19 An: [EMAIL PROTECTED] Betreff: Re: CV

Re: Ability to release a single project within a group?

2007-11-11 Thread Emmanuel Venisse
You can release a single project by using the release icon in the projects list. Emmanuel Olivier Dehon a écrit : Hello, It seems within continuum, one can only release an entire project group, and not just a single project within that group. This means that I need to create a plethorra of gr

Re: [1.1-beta-3] Description: $build.buildDefinition.description

2007-11-11 Thread Emmanuel Venisse
when trying to add the description later with Edit under Group I cannot save the changes but see a huge FreeMarker Template Error stack in yellow. I will file a bug on this. Andreas -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 1:

Re: [1.1-beta-3] Description: $build.buildDefinition.description

2007-11-09 Thread Emmanuel Venisse
Edit the build definition used by your project (project group or project level) and set the description field. Emmanuel Andreas Guther a écrit : I see the following line in my build status mail notifications: Description: $build.buildDefinition.description It comes up under the Build Definit

Re: Cleaning up results

2007-11-08 Thread Emmanuel Venisse
You can write some delete sql request for the BuildResult table. If you don't want to delete all, you can write a filter with projectId and maube an other filter on the end time. You'll get probably some errors with some foreign keys, so in this case, remove some values in join tables I'm sor

Re: Cleaning up results

2007-11-08 Thread Emmanuel Venisse
Without to run some sql requests in the db, you can't remove buils in 1.0.3 1.1 will be ready soon, so you'll can use it :) Emmanuel Alex Mayorga Adame a écrit : Is there a recommended manual way of doing this. I'm still running 1.0.3 and it has piled up 15 GB of old builds so far. I'm looking

Re: CVS checkout fails: "Terminated with fatal signal 11"

2007-11-07 Thread Emmanuel Venisse
It seems a kill was sent to the cvs client. How many time is used to do a checkout? Emmanuel [EMAIL PROTECTED] a écrit : Hi togehter, I'm using continuum 1.1 beta 3 at the moment. I have set up 2 Projects which work just fine. Now I'm in the process of setting up my third project, which is

Re: continuum being visible to all users

2007-11-06 Thread Emmanuel Venisse
e can delete things in Continuum !! Is there a way to let everybody see the projects and the build results and start a new build ? In 1.0.3 we had this possibility.. Emmanuel Venisse wrote: You need to add some rights to the guest users, at least Project group reader. Emmanuel Ionut

Re: Running Continuum as a service under Red Hat

2007-11-05 Thread Emmanuel Venisse
Raffaele a écrit : I've just tried adding a new line (now the total number of lines in the script is 51) but I have the same errors... Obviously I've downloaded the script from that link. Thanks, regards Raffaele Emmanuel Venisse wrote: Where did you find the script? here: http

Re: Communicating with Continuum

2007-11-05 Thread Emmanuel Venisse
1.1-beta-4 is released and have a xml-rpc client API that you can use to get builds informations Emmanuel Vishal Pahwa a écrit : Hi all We are using continuum1.1-beta-1 for continuous build. Now the requirement in our project is such that we need to generate a report in which we can spec

Re: Communicating with Continuum

2007-11-05 Thread Emmanuel Venisse
Can you ask on [EMAIL PROTECTED] ? Thanks Emmanuel Vishal Pahwa a écrit : Hi all We are using continuum1.1-beta-1 for continuous build. Now the requirement in our project is such that we need to generate a report in which we can specify the number of builds that have been taken place in a day.

Re: 1.1-beta-4 release comments

2007-11-02 Thread Emmanuel Venisse
Madsen,Bryan a écrit : I love the "Queues" page. Great job everyone on implementing that functionality. I have some questions related to the email formatting functionality. Here is my configuration in the application.xml: [MSVC Doc] BUILD ${state}: ${project.name} - ${project.version}

Re: Migration from beta-3 to beta-4 problem

2007-11-02 Thread Emmanuel Venisse
Maybe you can delete all datas in the DB with some sql requests. Emmanuel Thomas Recloux a écrit : Yes, it has just been initialized by the first start. 2007/11/2, Emmanuel Venisse <[EMAIL PROTECTED]>: ok, but the jdbc url for the import use a clean db? Emmanuel Thomas Recloux a

Re: Windows domain in username

2007-11-02 Thread Emmanuel Venisse
Is it a basic authentication? Emmanuel chris_ a écrit : Hi, I am trying to add a maven 2.0.x project but have not figured out how to specify a username that must contain the windows domain. Below are the settings that I think should work: Add Maven 2.0+ Project POM Url: http://myserver:8080/s

Re: Migration from beta-3 to beta-4 problem

2007-11-02 Thread Emmanuel Venisse
ok, but the jdbc url for the import use a clean db? Emmanuel Thomas Recloux a écrit : No, I exported from a beta-3 to a new beta-4 2007/11/1, Emmanuel Venisse <[EMAIL PROTECTED]>: Do you run Export and Import on the same database? Emmanuel Thomas Recloux a écrit : Hi, I have g

Re: 1.1-beta-3 Commiter build failure notifier Continuum-605

2007-11-01 Thread Emmanuel Venisse
prefer to configure notifier in your pom, you can add true in the notifier conf in your pom. Emmanuel -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 2:20 PM To: [EMAIL PROTECTED] Subject: Re: 1.1-beta-3 Commiter build failure

Re: 1.1-beta-4 Out of Memory

2007-11-01 Thread Emmanuel Venisse
weird, with only 22 projects, 512m should be enough. What is your jdk? Emmanuel L. J. a écrit : Ok, here is what I have in the plexus.sh PLEXUS_OPTS="$PLEXUS_OPTS -Xmx512m" Thanks. LJ On 10/31/07, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: You use plexus.sh to start Co

Re: locale settings

2007-10-31 Thread Emmanuel Venisse
The localization with french is new in this version and the locale to use is determined by the local sent by the browser to the server. If you don't want french, change your browser settings or remove "_fr.properties" file in the webapp. Emmanuel Erik Ruisma a écrit : Hello, I just installe

Re: 1.1-beta-3 Commiter build failure notifier Continuum-605

2007-10-31 Thread Emmanuel Venisse
Do you have configured you mail notifier to send to committers too? Emmanuel Madsen,Bryan a écrit : I had the committer update the pom to match the SCM sign-on and they still did not receive an email. -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent

Re: Multiple scheduled builds on the same project...

2007-10-30 Thread Emmanuel Venisse
Antonín Faltýnek a écrit : Dne středa 31. října 2007 Eric D. Nielsen napsal(a): I'm a little confused over how multiple build definitiions on different schedules interact within a project. After reading several threads it looks like my understand was correct, yet my installation doesn't seem

[announce] Continuum 1.1-beta-4 is released

2007-10-30 Thread Emmanuel Venisse
The Continuum team is pleased to announce the Continuum 1.1-beta-4 release Highlights are: * lot of bug fixes * A new page to view the build queue * Customization of mail subject You can grab the latest release from the download page : http://maven.apache.org/continuum/download.htm

  1   2   3   4   5   6   7   8   9   10   >