-Ross
> --
> You received this message because you are subscribed to the Google Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com.
> To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
>
-Ross
He's running Windows.
<configuration> <jvmArgs> <jvmArg>-Xms64m</jvmArg> <jvmArg>-Xmx1024m</jvmArg>
<jvmArg>-XX:MaxPermSize=128m</jvmArg>
</jvmArgs>
</configuration>
As a way out, does it make sense to retain the default max heap of 2048m
and create a windows specific profile with 1024m?
- Indrajit
Maxime L�vesque wrote:
> Thanks guys, changing the -Xms in the POM did it,
>
> the ./framework/pom.xml had this setting :
>
> <jvmArg>-Xmx2g</jvmArg>
>
> I changed it to :
>
> <jvmArg>-Xms64m</jvmArg>
> <jvmArg>-Xmx1024m</jvmArg>
>
> and it worked.
>
> Thank you all for your help
>
> On 13 ao�t, 02:27, David Bernard<david.bernard...@gmail.com> wrote:
>> Maxime,
>>
>> maven-scala-plugin doesn't run scalac in the same process as maven. To
>> define jvm args used to run scalac (including mx, permsize,...)
>> you should customize maven-scala-plugin configuration (MAVEN_OPTS is not
>> used)
>>
>> <configuration>
>> <jvmArgs>
>> <jvmArg>-Xms64m</jvmArg>
>> <jvmArg>-Xmx1024m</jvmArg>
>>
>> <jvmArg>-XX:MaxPermSize=128m</jvmArg>
>> </jvmArgs>
>> </configuration>
>>
>> seehttp://scala-tools.org/mvnsites/maven-scala-plugin/example_compile.ht...
>>
>> <http://scala-tools.org/mvnsites/maven-scala-plugin/example_compile.ht...>/davidB
>>
>> 2010/8/13 Maxime L�vesque<maxime.leves...@gmail.com>