Re: Top navbar on the site with fluido

2013-01-02 Thread Anders Hammar
a first step would be to have both bars, instead of top bar replacing left one I'm not so sure about this. The basic knowledge I have about UI design is to never have more than one way to initiate an action. I'm thinking that if we have to both menu bars showing the same items it will confuse

Re: core-integration-testing-maven-3 jobs hangs

2013-01-02 Thread Anders Hammar
Dennis, can you get a thread dump from your windows box? /Anders On Wed, Jan 2, 2013 at 5:07 AM, Kristian Rosenvold kristian.rosenv...@zenior.no wrote: A thread dump is worth a thousand words ;) K Den 2. jan. 2013 kl. 04:28 skrev Dennis Lundberg denn...@apache.org: Hi I've done

Surefire and low memory conditions

2013-01-02 Thread Dawid Weiss
Hi. Just wanted to ping you because I remember we talked about hardnuts for test runners (like surefire). I've been recently trying to think of a way to shutdown the forked JVM cleanly on permgen/ OOM conditions (and signal it back as such to the controlling process). Seems to be quite hard

Re: git commit: fix site deploy for svnpubsub using site:stage with ${project.artifactId}-archives/${project.artifactId}-${project.version} will expand values in addition of parent so sucks for multi

2013-01-02 Thread Robert Scholte
For the projects which are still using svn, could we use svn:externals? Although I'm not a huge fan of externals, since it's not directly clear where these files come from, I think in this case it's acceptable. At least these files can be maintained on 1 location. Robert Op Wed, 02 Jan 2013

Re: svn commit: r843406 - in /websites/production/maven/content/surefire-archives/surefire-2.13: ./ maven-failsafe-plugin/ maven-failsafe-plugin/css/ maven-failsafe-plugin/images/ maven-failsafe-plugi

2013-01-02 Thread Brett Porter
On 02/01/2013, at 10:45 AM, Hervé BOUTEMY herve.bout...@free.fr wrote: Le lundi 24 décembre 2012 14:17:02 Brett Porter a écrit : I had the same feeling pushing up Continuum's Maven site recently... On 23/12/2012, at 9:36 AM, Olivier Lamy ol...@apache.org wrote: 2012/12/22 Kristian

RE: Surefire and low memory conditions

2013-01-02 Thread Martin Gainty
David I was plagued by the same problem yesterday until I shut off forkMode in maven-surefire-plugin e.g. buildplugins plugin artifactIdmaven-surefire-plugin/artifactId configuration forkModenever/forkMode/configuration I also upped the MaxHeap and PermGen params in _JAVA_OPTIONS environment

Re: Top navbar on the site with fluido

2013-01-02 Thread Brian Fox
+1 On Tue, Jan 1, 2013 at 6:42 AM, Anders Hammar and...@hammar.net wrote: +1 I think we should keep the old left-hand menu, like what we've done over at Mojo. /Anders On Sat, Dec 29, 2012 at 5:09 PM, Jesse Farinacci jie...@gmail.com wrote: Greetings, On Fri, Dec 28, 2012 at 11:21

Re: Surefire and low memory conditions

2013-01-02 Thread Dawid Weiss
Thanks Martin. My question was in fact not user-based but developer-based. I'm developing an alternative JUnit runner for Lucene/Solr builds and we hit lots of exceptional situations. Permgen errors are kind of hard to deal with because after you hit it there are very few recovery options (short

Re: Surefire and low memory conditions

2013-01-02 Thread Andreas Gudian
Martin, you can also use the argLine property in the Surefire configuration to pass appropriate -X* settings to the forked processes. That way you can use any fork mode you might want and not have to pollute the general java opts and, more importantly, the memory realm of a multi-module build (if

Re: core-integration-testing-maven-3 jobs hangs

2013-01-02 Thread Dennis Lundberg
So, my first ever thread dump. Hope it's the right stuff... Full thread dump Java HotSpot(TM) 64-Bit Server VM (1.5.0_22-b03 mixed mode): WATCHDOG daemon prio=6 tid=0x072f1fe0 nid=0x1234 in Object.wait() [0x0b8df000..0x0b8dfa90] at java.lang.Object.wait(Native

Re: Top navbar on the site with fluido

2013-01-02 Thread Robert Scholte
I'd prefer the sidebar (alone) as well. I've just verified that I can easily reskin the site, so it shouldn't be too hard to remove it from existing pages. Compare these 2 sites: http://maven.apache.org/plugins/maven-clean-plugin/

Re: core-integration-testing-maven-3 jobs hangs

2013-01-02 Thread Kristian Rosenvold
That process seems to be just waiting for some other process to complete. Use something like jps -lv to determine if there's more java processes around,determine if any of them seem to be relevant and thread dump them ;) Kristian 2013/1/2 Dennis Lundberg denn...@apache.org: So, my first ever

Re: Surefire and low memory conditions

2013-01-02 Thread Kristian Rosenvold
It would be quite simple to have a thread in the forked process simply pulsing a heartbeat back to the plugin ? And if 3 heartbeats are missed, we simply kill it ? (Pardon the pun ;) Kristian 2013/1/2 Dawid Weiss dawid.we...@gmail.com: Hi. Just wanted to ping you because I remember we talked

Re: Surefire and low memory conditions

2013-01-02 Thread Dawid Weiss
It would be quite simple to have a thread in the forked process simply pulsing a heartbeat back to the plugin ? And if 3 heartbeats are missed, we simply kill it ? (Pardon the pun ;) Yeah, I sort of have that already but not in a background thread form (it's a longer story). Anyway, a