Re: Running all tests in a package

2010-07-15 Thread Karan Malhi
On Thu, Jul 15, 2010 at 9:29 AM, Wendy Smoak wrote: > On Thu, Jul 15, 2010 at 9:21 AM, Karan Malhi > wrote: > > Is it possible to only run all tests contained in a specific package? > > You can configure includes/excludes in the Surefire plugin. > > http://maven.

Running all tests in a package

2010-07-15 Thread Karan Malhi
Is it possible to only run all tests contained in a specific package? -- Karan Singh Malhi

Re: out of memory error on windows

2008-08-19 Thread Karan Malhi
woops! thanks a lot :) On Wed, Aug 20, 2008 at 12:48 AM, Brett Porter <[EMAIL PROTECTED]>wrote: > It's missing the "m" at the end, so you're attempting to set a maximum > of 1024kb = 1m :) > > - Brett > > 2008/8/20 Karan Malhi <[EMAIL PROTECTED]&g

Re: out of memory error on windows

2008-08-19 Thread Karan Malhi
ething is misconfigured - you're only giving it > 5M of memory to work in (while the JVM default is either 32M or 64M). > > 2008/8/20 Karan Malhi <[EMAIL PROTECTED]>: > > Maven works fine on my linux machine. On windows, i get an out of memory > > error. here is the inf

out of memory error on windows

2008-08-19 Thread Karan Malhi
Maven works fine on my linux machine. On windows, i get an out of memory error. here is the info about maven:- C:\>mvn --version Maven version: 2.0.9 Java version: 1.6.0_10-rc OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows" Whenever I try to run mvn, it gives me an out of memor

Re: too many open files

2008-07-29 Thread Karan Malhi
Found the fix. In case somebody facing a similar issue, read instructions on this blog here http://lj4newbies.blogspot.com/2007/04/too-many-open-files.html On Tue, Jul 29, 2008 at 8:57 AM, Karan Malhi <[EMAIL PROTECTED]> wrote: > Hi, > > Whenever I try to do the following: > m

too many open files

2008-07-29 Thread Karan Malhi
Hi, Whenever I try to do the following: mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true I always get the following error (too many files open): [INFO] [ERROR] BUILD ERROR [INFO] --

Re: out of memory

2008-07-14 Thread Karan Malhi
Doesnt help, still the same error On Mon, Jul 14, 2008 at 5:34 PM, Brian E. Fox <[EMAIL PROTECTED]> wrote: > Set MAVEN_OPTS= -XmX128m or some other size you want. > > -Original Message- > From: Karan Malhi [mailto:[EMAIL PROTECTED] > Sent: Monday, July 14, 2008 5:25

Re: out of memory

2008-07-14 Thread Karan Malhi
org.codehaus.classworlds.Launcher.main(Launcher.java:375) [INFO] [INFO] Total time: 3 seconds [INFO] Finished at: Mon Jul 14 17:23:07 EDT 2008 [INFO] Final Memory: 1M/1M [INFO] ---- On Mon, Jul 14, 2008 at 5:22

out of memory

2008-07-14 Thread Karan Malhi
On windows xp, I am getting the following error. How can I fix it D:\projects\oss\openejb3>mvn -Dassemble clean install [INFO] Scanning for projects... [INFO] [ERROR] FATAL ERROR [INFO] ---

Re: executing a profile

2008-06-18 Thread Karan Malhi
3:45 AM, Martin Höller <[EMAIL PROTECTED]> wrote: > On Monday 16 June 2008 Karan Malhi wrote: > > Hi, > > > > I have a requirement to configure the eclipse plugin within the pom so > > that I can replace the following > > > > mvn eclipse:eclipse -DdownloadSou

mvn eclipse plugin -- Too many files (linux)

2008-06-17 Thread Karan Malhi
I have added the two elements to the pom (downloadSources and downloadJavadocs), the eclipse:eclipse goal does not run to completion and errors out after 6 minutes or so. It says there are "too many open files". I knew I had seen this error before and it is because there is a limit of total number

Re: executing a profile

2008-06-17 Thread Karan Malhi
** nudge ** On Mon, Jun 16, 2008 at 12:42 PM, Karan Malhi <[EMAIL PROTECTED]> wrote: > Hi, > > I have a requirement to configure the eclipse plugin within the pom so that > I can replace the following > > mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavado

executing a profile

2008-06-16 Thread Karan Malhi
Hi, I have a requirement to configure the eclipse plugin within the pom so that I can replace the following mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true -DsomeProperty with something in the pom so that I should be able to simply run mvn eclipse:eclipse and download sources

Re: filtering issues in assembly plugin

2007-06-18 Thread Karan Malhi
why. The previous version used > > to work. > > > > I guess I second the nudge. :-) > > > > Jim > > > > "Karan Malhi" <[EMAIL PROTECTED]> writes: > > > >> **--nudge--** > >> > >> On 6/8/07, Karan Malhi

Re: filtering issues in assembly plugin

2007-06-17 Thread Karan Malhi
0755 true On 6/17/07, Karan Malhi <[EMAIL PROTECTED]> wrote: John, I am not sure about how much of information you need, but will try my best to explain the problem and provide the neccessary sections of the pom.xml files The project structure is as follows: d:\op

Re: filtering issues in assembly plugin

2007-06-17 Thread Karan Malhi
, 2007, at 9:15 AM, Jim Crossley wrote: > I see this, too, though I don't know why. The previous version used > to work. > > I guess I second the nudge. :-) > > Jim > > "Karan Malhi" <[EMAIL PROTECTED]> writes: > >> **--nudge--** >> >

Re: filtering issues in assembly plugin

2007-06-08 Thread Karan Malhi
**--nudge--** On 6/8/07, Karan Malhi <[EMAIL PROTECTED]> wrote: I have a module named assembly. I am using the assembly plugin 2.1 . if i run maven from the parent project, then resources are not filtered. if i run maven from the assembly module itself, resources are filtered properl

filtering issues in assembly plugin

2007-06-08 Thread Karan Malhi
I have a module named assembly. I am using the assembly plugin 2.1 . if i run maven from the parent project, then resources are not filtered. if i run maven from the assembly module itself, resources are filtered properly. Any ideas why this would be happening? -- Karan Malhi

how to disable dowloading beta versions of plugins

2007-06-07 Thread Karan Malhi
- How do I tell maven to stop downloading the beta versions of plugins and just download the latest stable releases of plugins? - Can I ask maven to clean the repo of all beta versions of plugins or do i have to manually remove them? -- Karan Malhi

Re: Debugging maven within eclipse

2007-06-06 Thread Karan Malhi
L PROTECTED] -- Karan Malhi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: maven console plugin

2005-10-01 Thread Karan Malhi
Sorry, I thought i had replied to the list. I am a new subscriber to this list , any pointers where can i do a search for this recent post you were mentioning. I really appreciate your help. Thanks a lot On 10/1/05, Brett Porter <[EMAIL PROTECTED]> wrote: > > On 10/2/05, Karan M

maven console plugin

2005-10-01 Thread Karan Malhi
Hi Brett, I had filed a JIRA issue sometime back regarding the maven console plugin (MPCONSOLE-10). I had spoken of breaking the console into two to provide fine grained hooks into the console (pre/postGoals, prereqs). Please could you look into that for me. Thanks a lot -- Karan Malhi