Re: adjustable SCM urls

2005-07-19 Thread Tomasz Pik
On 19/07/05, Trygve Laugstøl [EMAIL PROTECTED] wrote: On Mon, Jul 18, 2005 at 02:59:20PM +0200, Tomasz Pik wrote: During Continuum evaluation I've found following problem: in some cases I've to define repository/connection elements using properties: repository connection

Problem Running from Continuum

2005-07-19 Thread Rinku
Hi, I am following the note on the Getting Started page on Continuum website to get it running, but not sure what I am doing wrong. quote After you have downloaded and unpacked the bundle execute bin/plexus.sh if you are on a UNIX platform or bin/plexus.bat ..\conf\plexus.xml if you are

Re: Problem Running from Continuum

2005-07-19 Thread Emmanuel Venisse
It's an error in docs. You should run bin\win32\run.bat Emmanuel Rinku wrote: Hi, I am following the note on the Getting Started page on Continuum website to get it running, but not sure what I am doing wrong. quote After you have downloaded and unpacked the bundle execute bin/plexus.sh

Re: adjustable SCM urls

2005-07-19 Thread Trygve Laugstøl
On Tue, Jul 19, 2005 at 08:43:08AM +0200, Tomasz Pik wrote: On 19/07/05, Trygve Laugstøl [EMAIL PROTECTED] wrote: On Mon, Jul 18, 2005 at 02:59:20PM +0200, Tomasz Pik wrote: During Continuum evaluation I've found following problem: in some cases I've to define repository/connection

ajax request

2005-07-19 Thread Maksimenko Alexander
Hi! I have to make ajax request which affect to many components in the page. For example,lets consider mail web application. It has list of messages (data table) and tree of folders(tree). When user clicks on message which is unread after ajax request we should 1) change style of the

[M2] Checkout and build code query

2005-07-19 Thread Michael Owen
Hi, I'm trying to use the lastest code of Maven2. To do this I've followed http://maven.apache.org/maven2/building.html. I've issued the command: svn co http://svn.apache.org/repos/asf/maven/components/trunk maven-components This seemed to checkout most files but I received the following

Including newly baked .class file on classpath

2005-07-19 Thread Morten Primdahl
Hi, After compiling, I would like to invoke a class in order to generate some properties files in the target/classes/doof/bar/ directory. I've tried the following: postGoal name=java:compile ant:path id=justbuilt ant:pathelement path=${maven.build.dest}/

help needed

2005-07-19 Thread gonthina kishore
Hi, I am trying to use the ant:ftp task in my script. I wrote the task as ant:ftp server=193.183.69.30 port=21 userid=auto password=abc ant:fileset dir=/home/cwzip/ /ant:ftp I setted the classpath for the 3 jar files jakarta-oro-2.0.8.jar NetComponents.jar commons-net-1.2.2.jar When i run

Re:[M2] Checkout and build code query

2005-07-19 Thread Yann LE DU
Hi Mike, It looks like a pure SVN problem, a lot of files are missing. Try the following hints : * Do the svn cleanup * Check if you have enough space on your disk * Check your svn version, it should be at least 1.1.4 * Go to http://subversion.tigris.org/ for more help Regards, Yann

[m102] scm-plugin svn checkout to the wrong directory

2005-07-19 Thread Christian Schlaefcke
Hi Folks, is there a way to tell the scm-plugin with svn to checkout to ${maven.scm.checkout.dir}/modulename instead of plain ${maven.scm.checkout.dir}? Thanks Regards, Christian - To unsubscribe, e-mail: [EMAIL

Re:[M2] Checkout and build code query

2005-07-19 Thread Michael Owen
Thanks for your help. I've managed to sort out downloading all files. Can you explain what I should do next. I've got alpha 3 release installed in a folder, set environments to that folder, and got the maven-components folder in that folder. I then went into maven-components folder and ran -

Re: [M2] Checkout and build code query

2005-07-19 Thread John Casey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Haven you tried following the suggestions of SVN? Buried in the below output, it suggests running 'svn cleanup'...did that not help? It looks like some sort of problem with disk space, or permissions or something for the svn internal temporary

Re: [M2] Checkout and build code query

2005-07-19 Thread John Casey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 disregard; I hadn't read through enough of my inbox. John Casey wrote: | Haven you tried following the suggestions of SVN? Buried in the below | output, it suggests running 'svn cleanup'...did that not help? It looks | like some sort of problem with

RE: M2 Eclipse problem

2005-07-19 Thread Erick Dovale
It seems like you have a typo in the maven.repo http://repo1.maven.org/maven2/p lugins Try removing the space between the p and the l in pluggins. -Original Message- From: Kumar, Shailendra [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 19, 2005 11:19 AM To: Maven Users List Subject:

AW: M2 Eclipse problem

2005-07-19 Thread Sherzad Rias
Hi Shailendra, I'm absolutely new to Maven but let me make a wild guess: Looks like the surefire-plugin is named differently and it's path can't be resolved when Maven2 is looking for updates. Check this path: http://www.ibiblio.org/maven2/plugins/org/apache/maven/plugins/ And notice, that you

Re: help needed

2005-07-19 Thread dan tran
you need to load the ftp tag, search the archive for solution. -D On 7/19/05, gonthina kishore [EMAIL PROTECTED] wrote: Hi, I am trying to use the ant:ftp task in my script. I wrote the task as ant:ftp server=193.183.69.30 port=21 userid=auto password=abc ant:fileset dir=/home/cwzip/

Strange download problem

2005-07-19 Thread Jon Strayer
I'm setting up a new development box (HP-UX) and I'm getting timeouts when Maven tries to download a dependency. The dependency is there. I can FTP it down. But Maven can't get it. Any ideas? Error retrieving artifact from

Re: [m2] slow filtered resources

2005-07-19 Thread John Fallows
On 7/19/05, Kenney Westerhof [EMAIL PROTECTED] wrote: On Tue, 19 Jul 2005, Brett Porter wrote: Filtering is indeed off by default. My 2 cents: I've been pondering how to exclude resources from filtering. All that I could think of was to apply some includes/excludes mechanism (that would

Re: [m2] maven-osgi-plugin

2005-07-19 Thread Brett Porter
There has been talk, buit AFAIK nobody has writen one for any version of Maven. If you know of one, please let us know the URL. - Brett On 7/20/05, Bennett, Timothy (JIS/Applications) [EMAIL PROTECTED] wrote: Is the maven-osgi-plugin available for maven2 yet?

Re: [M2] Checkout and build code query

2005-07-19 Thread Brett Porter
Bootstrapping deletes your target folder, so you cannot run it from a subdirectory. This would explain a partial checkout before, as it may be partially deleted when it fails on mboot.jar (which is in use). - Brett On 7/19/05, Michael Owen [EMAIL PROTECTED] wrote: Thanks for your help. I've

Problem using AbstractStatelessSessionBean with Maven's XDoclet p lugin

2005-07-19 Thread Ballard, Ken
Thanks, again to Dennis Geurts for getting me most of the way there. I'm much closer now. I'm generating stuff. The problem is that my EJBs use Springs EJB support classes, so instead of implementing javax.ejb.SessionBean they extend org.springframework.ejb.support.AbstractStatelessSessionBean.

RE: [m2] maven-osgi-plugin

2005-07-19 Thread Bennett, Timothy (JIS/Applications)
-Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 19, 2005 3:32 PM To: Maven Users List Subject: Re: [m2] maven-osgi-plugin There has been talk, buit AFAIK nobody has writen one for any version of Maven. If you know of one, please let us know

Re: Problem Running from Continuum

2005-07-19 Thread Rinku
Hi Emmanuel, This still doesn't works by executing bin\win32\run.bat. Following is the output I get on running this. snip D:\continuum-src\continuum-plexus-application\target\plexus-test-runtimebin\win32\run.bat conf\plexus.xml wrapper | -- Wrapper Started as Console wrapper | Launching

Re: [m2] maven-osgi-plugin

2005-07-19 Thread Brett Porter
added: http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix On 7/20/05, Bennett, Timothy (JIS/Applications) [EMAIL PROTECTED] wrote: -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 19, 2005 3:32 PM To: Maven Users List Subject: Re: [m2]

[maven] jcoverage examples please?

2005-07-19 Thread Mick Knutson
Can someone please give me a jcoverage example for my maven build? Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com HP Consulting Services (Walnut Creek, CA)

Re: [maven] jcoverage examples please?

2005-07-19 Thread Carlos Sanchez
Hi, I suggest you to take a look at the cobertura plugin. Cobertura is a fork of jcoverage actively developed, while jcoverage seems stalled. http://maven-plugins.sourceforge.net//maven-cobertura-plugin/ Regards On 7/19/05, Mick Knutson [EMAIL PROTECTED] wrote: Can someone please give me a

Re: help needed

2005-07-19 Thread Rinku
you could google for maven mail archives here they are: (All archives) http://mail-archives.apache.org/mod_mbox/ (Maven user list archives) http://mail-archives.apache.org/mod_mbox/maven-users/ gonthina kishore wrote: Hi, I am new to this environment. I am not having the idea of how to

Re: help needed

2005-07-19 Thread dan tran
http://marc.theaimsgroup.com/?l=turbine-maven-user search for ANT FTP with Maven On 7/19/05, Rinku [EMAIL PROTECTED] wrote: you could google for maven mail archives here they are: (All archives) http://mail-archives.apache.org/mod_mbox/ (Maven user list archives)