Re: Hide page version query parameters

2012-01-01 Thread Martin Grigorov
On Mon, Jan 2, 2012 at 8:18 AM, Taneli Korri wrote: > On Sat, Dec 31, 2011 at 4:31 PM, Martin Grigorov wrote: >> On Sat, Dec 31, 2011 at 2:29 PM, Taneli Korri wrote: >>> On Sat, Dec 31, 2011 at 9:09 AM, Martin Grigorov >>> wrote: On Fri, Dec 30, 2011 at 11:43 PM, martin.dilger wrote

Re: Can't build wicket from updated trunk

2012-01-01 Thread Martin Grigorov
I don't set any JVM settings to be able to build Wicket... @Chris: do you have some globally exported MAVEN_OPTS which may interfere ? On Mon, Jan 2, 2012 at 6:52 AM, Matthias Gasser wrote: > You need to increase the heap space for maven. > > Just run the following line prior building: > >

Re: Hide page version query parameters

2012-01-01 Thread Taneli Korri
On Sat, Dec 31, 2011 at 4:31 PM, Martin Grigorov wrote: > On Sat, Dec 31, 2011 at 2:29 PM, Taneli Korri wrote: >> On Sat, Dec 31, 2011 at 9:09 AM, Martin Grigorov >> wrote: >>> On Fri, Dec 30, 2011 at 11:43 PM, martin.dilger >>> wrote: hi, you could try to change your render strategy

Re: Can't build wicket from updated trunk

2012-01-01 Thread Matthias Gasser
You need to increase the heap space for maven. Just run the following line prior building: snip set MAVEN_OPTS=-Xmx1024m -XX:MaxPermSize=128m snap That should bring you through. -matthias Am 02.01.2012 um 05:43 schrieb Chris Colman: > I cloned the wicket git repos and then

RE: Can't build wicket from updated trunk

2012-01-01 Thread Chris Colman
I cloned the wicket git repos and then checked out branch wicket-1.5.x branch and the build broke in a different place (it got a bit further this time :) ) The build was done on a Windows XP box with 4GB RAM so I wouldn't have thought it would have run out of memory. [INFO] 1 error [INFO]

Re: Can't build wicket from updated trunk

2012-01-01 Thread Igor Vaynberg
already moved. -igor On Sun, Jan 1, 2012 at 7:31 PM, Chris Colman wrote: > Is Wicket moving to git? > > Chris > >>-Original Message- >>From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] >>Sent: Monday, 2 January 2012 2:24 PM >>To: users@wicket.apache.org >>Subject: Re: Can't build wick

RE: Can't build wicket from updated trunk

2012-01-01 Thread Chris Colman
Is Wicket moving to git? Chris >-Original Message- >From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] >Sent: Monday, 2 January 2012 2:24 PM >To: users@wicket.apache.org >Subject: Re: Can't build wicket from updated trunk > >clone the project from here: >http://git-wip-us.apache.org/rep

Re: Can't build wicket from updated trunk

2012-01-01 Thread Igor Vaynberg
clone the project from here: http://git-wip-us.apache.org/repos/asf/wicket -igor On Sun, Jan 1, 2012 at 6:09 PM, Chris Colman wrote: > ** ** > > I have done a recent update on my working copy of the trunk and mvn clean > install yields: > > ** ** > > Project ID: org.apache.wicket:wicket-ioc*

Can't build wicket from updated trunk

2012-01-01 Thread Chris Colman
I have done a recent update on my working copy of the trunk and mvn clean install yields: Project ID: org.apache.wicket:wicket-ioc POM Location: C:\dev\libs\wicket\trunk\wicket-ioc\pom.xml Validation Messages: [0] 'dependencies.dependency.version' is missing for javax.inject:javax.inject:j

Re: Hide page version query parameters

2012-01-01 Thread martin.dilger
Yes, thats right, stateless pages do not have version number, but normally it is not so easy to make pages stateless, we always had problems with that. But if you change your render strategy to redirect to render, the uri in the browser does not change and you always have clean uris. Thats how w